Skip to content

Commit 1551f50

Browse files
fredjgberaudo
authored andcommitted
Remove openlayers_src temporary hack
1 parent 71ba1cf commit 1551f50

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
/examples/example-list.js
55
/package-lock.json
66
/compilation-stats.json
7-
/openlayers_src/

.npmignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/.build
22
examples/example-list.js
3-
/openlayers_src
43
/*.tgz
54
/*.zip

Makefile

+1-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ dist-examples: .build/dist-examples.timestamp
3535
.PHONY: dist-apidoc
3636
dist-apidoc: .build/jsdoc.timestamp
3737

38-
openlayers_src:
39-
npm install --prefix openlayers_src https://api.github.com/repos/openlayers/openlayers/tarball/v5.3.0
40-
41-
.build/jsdoc.timestamp: openlayers_src $(SRC_JS_FILES) .build/node_modules.timestamp
38+
.build/jsdoc.timestamp: $(SRC_JS_FILES) .build/node_modules.timestamp
4239
npm run doc
4340
mkdir -p $(dir $@)
4441
touch $@

tsconfig.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010
// "strict": true,
1111
"baseUrl": "./",
1212
"paths": {
13-
// "ol/*": ["node_modules/ol/*"],
14-
// Temporary, run that to use it:
15-
// npm install --prefix openlayers_src https://api.github.com/repos/openlayers/openlayers/tarball/v5.3.0
16-
"ol/*": ["openlayers_src/node_modules/ol/src/ol/*"],
13+
"ol/*": ["node_modules/ol/*"],
1714
}
1815
},
1916
"include": [

0 commit comments

Comments
 (0)