Skip to content

Commit

Permalink
Move to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-markl committed Oct 14, 2022
1 parent 3434779 commit ae94724
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 801 deletions.
23 changes: 11 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,28 @@ jobs:
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
name: Restore NPM Package Cache
keys:
- 0-yarn-{{ arch }}-{{ checksum "yarn.lock" }}
- 0-yarn-{{ arch }}-
- 0-npm-{{ arch }}-{{ checksum "package-lock.json" }}
- 0-npm-{{ arch }}-
- run:
name: Install Dependencies
command: yarn install --immutable
command: npm ci
- save_cache:
name: Save Yarn Package Cache
key: 0-yarn-{{ arch }}-{{ checksum "yarn.lock" }}
name: Save NPM Package Cache
key: 0-npm-{{ arch }}-{{ checksum "package-lock.json" }}
paths:
- ~/.cache/yarn
- node_modules
- run:
command: yarn run flow
command: npm run flow
- run:
command: yarn run lint
command: npm run lint
- run:
command: yarn run test --ci
command: npm run test --ci
- run:
command: yarn run test:coverage --ci
command: npm run test:coverage --ci
- run:
command: yarn run build
command: npm run build

workflows:
version: 2
Expand Down
785 changes: 0 additions & 785 deletions .yarn/releases/yarn-3.2.0.cjs

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,5 @@
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-styled-components": "^0.1.1",
"webpack": "^5.70.0"
},
"packageManager": "[email protected]"
}
}

0 comments on commit ae94724

Please sign in to comment.