Browse Source

chore: reinstall npm dependencies (#2491)

pull/2496/head
Yoshiya Hinosawa 6 years ago committed by GitHub
parent
commit
422c3ee4eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .circleci/config.yml
  2. 8624
      package-lock.json

8
.circleci/config.yml

@ -10,10 +10,10 @@ jobs:
echo "npm v$(npm --version)" echo "npm v$(npm --version)"
echo "$(google-chrome --version)" echo "$(google-chrome --version)"
- restore_cache: - restore_cache:
key: npm-1.1-{{ checksum "package.json" }} key: npm-1.1-{{ checksum "package-lock.json" }}
- run: npm install - run: npm install
- save_cache: - save_cache:
key: npm-1.1-{{ checksum "package.json" }} key: npm-1.1-{{ checksum "package-lock.json" }}
paths: paths:
- ./node_modules - ./node_modules
- run: npm test - run: npm test
@ -39,10 +39,10 @@ jobs:
- vendor/bundle - vendor/bundle
- restore_cache: - restore_cache:
key: npm-2-{{ checksum "package.json" }} key: npm-2-{{ checksum "package-lock.json" }}
- run: npm install - run: npm install
- save_cache: - save_cache:
key: npm-2-{{ checksum "package.json" }} key: npm-2-{{ checksum "package-lock.json" }}
paths: paths:
- ./node_modules - ./node_modules

8624
package-lock.json generated

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save