Skip to content

Commit

Permalink
unmuck files
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Aug 18, 2023
1 parent 4c596ab commit c4bff1d
Show file tree
Hide file tree
Showing 4 changed files with 1,806 additions and 2,928 deletions.
58 changes: 29 additions & 29 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
- checkout
- restore_cache:
keys:
- v3-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v3-react-yarn-
- v2-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v2-react-yarn-
- run: NODE_ENV=production yarn --cwd=packages/react build
- run: yarn --cwd=packages/react test
styles:
Expand All @@ -34,55 +34,55 @@ jobs:
- checkout
- restore_cache:
keys:
- v3-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v3-styles-yarn-
- v2-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v2-styles-yarn-
- run: NODE_ENV=production yarn --cwd=packages/styles build
dependencies:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- v3-yarn-cache-{{ checksum "yarn.lock" }}
- v3-yarn-cache-
- v2-yarn-cache-{{ checksum "yarn.lock" }}
- v2-yarn-cache-
- restore_cache:
keys:
- v3-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v3-react-yarn-
- v2-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v2-react-yarn-
- restore_cache:
keys:
- v3-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v3-styles-yarn-
- v2-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v2-styles-yarn-
- run: yarn
- save_cache:
key: v3-yarn-cache-{{ checksum "yarn.lock" }}
key: v2-yarn-cache-{{ checksum "yarn.lock" }}
paths:
- node_modules
- save_cache:
paths:
- packages/react/node_modules
key: v3-react-yarn-{{ checksum "packages/react/yarn.lock" }}
key: v2-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- save_cache:
paths:
- packages/styles/node_modules
key: v3-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
key: v2-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
checks:
<<: *defaults
steps:
- checkout
- restore_cache:
key: v3-yarn-cache-{{ checksum "yarn.lock" }}
key: v2-yarn-cache-{{ checksum "yarn.lock" }}
- run: yarn lint
a11y:
<<: *defaults
steps:
- checkout
- restore_cache:
key: v3-yarn-cache-{{ checksum "yarn.lock" }}
key: v2-yarn-cache-{{ checksum "yarn.lock" }}
- restore_cache:
key: v3-react-yarn-{{ checksum "packages/react/yarn.lock" }}
key: v2-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- restore_cache:
key: v3-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
key: v2-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- run: yarn build:styles
- run: yarn build:react
- run: yarn build:docs
Expand All @@ -94,16 +94,16 @@ jobs:
- <<: *set_npm_auth
- restore_cache:
keys:
- v3-yarn-cache-{{ checksum "yarn.lock" }}
- v3-yarn-cache-
- v2-yarn-cache-{{ checksum "yarn.lock" }}
- v2-yarn-cache-
- restore_cache:
keys:
- v3-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v3-react-yarn-
- v2-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v2-react-yarn-
- restore_cache:
keys:
- v3-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v3-styles-yarn-
- v2-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v2-styles-yarn-
- run: npm whoami
- run: .circleci/canary-version.js
- run: cd packages/styles && npm publish --tag=next
Expand All @@ -115,16 +115,16 @@ jobs:
- <<: *set_npm_auth
- restore_cache:
keys:
- v3-yarn-cache-{{ checksum "yarn.lock" }}
- v3-yarn-cache-
- v2-yarn-cache-{{ checksum "yarn.lock" }}
- v2-yarn-cache-
- restore_cache:
keys:
- v3-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v3-react-yarn-
- v2-react-yarn-{{ checksum "packages/react/yarn.lock" }}
- v2-react-yarn-
- restore_cache:
keys:
- v3-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v3-styles-yarn-
- v2-styles-yarn-{{ checksum "packages/styles/yarn.lock" }}
- v2-styles-yarn-
- run: npm whoami
- run: cd packages/styles && npm publish
- run: cd packages/react && npm publish
Expand Down
1 change: 0 additions & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-export-default-from": "^7.22.5",
"@babel/preset-env": "^7.22.10",
Expand Down
Loading

0 comments on commit c4bff1d

Please sign in to comment.