Skip to content

Commit c3d9657

Browse files
authored
Remove package-lock.json (#104)
* Remove package-lock.json As per [the npm documentation](https://docs.npmjs.com/cli/v8/configuring-npm/package-lock-json#package-lockjson-vs-npm-shrinkwrapjson): > ...`package-lock.json` cannot be published, and it will be ignored if found in any place other than the root project. * Update CI workflow to use npm install `npm ci` only works if you have a `package-lock.json` or `npm-shrinkwrap.json` file.
1 parent 8fdd411 commit c3d9657

File tree

3 files changed

+2
-14713
lines changed

3 files changed

+2
-14713
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
uses: actions/setup-node@v1
2424
with:
2525
node-version: ${{ matrix.node-version }}
26-
- run: npm ci
26+
- run: npm install
2727
- run: npm test
2828
- run: npm test -- --coverage-report=text-lcov | npx codecov --pipe

Diff for: .npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)