Remove lock file

This commit is contained in:
Arthur Vivian
2021-12-16 12:23:15 +00:00
committed by Arthur Vivian
parent e6b036ee17
commit 75420d2f1d
4 changed files with 4 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ jobs:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Modules
run: npm ci
run: npm install
- name: Run type check
run: npm run types:check
- name: Run Linter

View File

@@ -7,7 +7,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install Modules
run: npm ci
run: npm install
- name: Run type check
run: npm run types:check
- name: Run Linter

1
.gitignore vendored
View File

@@ -5,3 +5,4 @@ dist
.idea
.vscode
examples/**/package-lock.json
package-lock.json

View File

@@ -6,6 +6,7 @@
"lib": ["esnext", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,