Skip to content
This repository was archived by the owner on Oct 27, 2019. It is now read-only.

Commit 86fe8d0

Browse files
authored
Add leaflet-d3 dependency cache (#13)
* Add leaflet-d3 dependencies cache * The final solution will be to introduce `frontend-maven-plugin` in a separate change * Bump library version
1 parent ff59ef6 commit 86fe8d0

File tree

8 files changed

+1246
-5
lines changed

8 files changed

+1246
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add the dependency:
3333
<dependency>
3434
<groupId>pl.itrack</groupId>
3535
<artifactId>gwt-leaflet-d3</artifactId>
36-
<version>0.3.0</version>
36+
<version>0.3.1</version>
3737
</dependency>
3838
```
3939

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
echo "-> Build dependencies"
4+
npm install
5+
6+
echo "-> Copy built dependencies"
7+
rm -rf ./dist
8+
mkdir ./dist
9+
cp ./node_modules/@asymmetrik/leaflet-d3/dist/*.js ./dist
10+
rm -rf ./node_modules
11+
rm package-lock.json
12+
#git add ./dist
13+
14+
echo "Success!"

0 commit comments

Comments
 (0)