We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24aa873 commit 3ca0412Copy full SHA for 3ca0412
.eslintignore
@@ -0,0 +1 @@
1
+*.d.ts
.github/workflows/test.yml
@@ -13,5 +13,7 @@ jobs:
13
- uses: actions/setup-node@v3
14
with:
15
node-version: 18
16
+ - name: Lint
17
+ run: npm run lint
18
- name: Pseudo release
19
run: buildtools/release.sh
package.json
@@ -9,6 +9,7 @@
9
"build-umd": "cross-env NODE_ENV=production TARGET=umd webpack --progress --bail",
10
"start": "cross-env DEV_SERVER=1 NODE_ENV=development TARGET=examples webpack serve --port 3000 --progress --bail --static-directory .",
11
"typecheck": "tsc --pretty",
12
+ "lint": "eslint src",
"doc": "typedoc --name ol-cesium --excludeExternals --out dist/apidoc --entryPoints src/index.library.js --tsconfig ./tsconfig.json"
},
"main": "./dist/olcesium.js",
0 commit comments