Skip to content

Commit 3be79c1

Browse files
Merge pull request #409 from engaging-computing/dev
Switched to npm
2 parents 6765eb5 + 3ad13bd commit 3be79c1

5 files changed

Lines changed: 27776 additions & 12429 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
build:
44
docker:
55
# specify the version you desire here
6-
- image: circleci/node:10.13
6+
- image: circleci/node:12.18
77

88
# Specify service dependencies here if necessary
99
# CircleCI maintains a library of pre-built images
@@ -24,7 +24,7 @@ jobs:
2424
# fallback to using the latest cache if no exact match is found
2525
- v1-dependencies-
2626

27-
- run: yarn install
27+
- run: npm ci
2828

2929
- save_cache:
3030
paths:
@@ -34,7 +34,7 @@ jobs:
3434
# run tests!
3535
- run:
3636
name: Run test suites
37-
command: yarn test
37+
command: npm test
3838
- run:
3939
name: Run eslint
40-
command: yarn lint
40+
command: npm run lint

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ npm-debug.log*
2121
yarn-debug.log*
2222
yarn-error.log*
2323
.vscode
24-
package-lock.json
24+
!package-lock.json
25+
yarn.lock

0 commit comments

Comments
 (0)