File tree Expand file tree Collapse file tree 5 files changed +48
-1
lines changed
Expand file tree Collapse file tree 5 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 1616 uses : actions/setup-node@v3
1717 with :
1818 node-version : 18
19+ cache : ' npm'
20+ cache-dependency-path : ' **/package-lock.json'
1921
2022 - run : npm ci
2123
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ concurrency : ${{ github.workflow }}-${{ github.ref }}
9+
10+ jobs :
11+ release :
12+ name : Release
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Setup Node.js
19+ uses : actions/setup-node@v3
20+ with :
21+ node-version : 18
22+ cache : ' npm'
23+ cache-dependency-path : ' **/package-lock.json'
24+
25+ - run : npm ci
26+
27+ - name : Publish to NPM
28+ id : changesets
29+ uses : changesets/action@v1
30+ with :
31+ publish : npm run release
32+ env :
33+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
35+ TURBO_TOKEN : ${{ secrets.TURBO_TOKEN }}
36+ TURBO_TEAM : ${{ secrets.TURBO_TEAM }}
Original file line number Diff line number Diff line change 1+ # @ign-ui/tokens
2+
3+ ## 1.1.0
4+
5+ ### Minor Changes
6+
7+ - Add new test color
Original file line number Diff line number Diff line change 11{
22 "name" : " @ign-ui/tokens" ,
3- "version" : " 1.0 .0" ,
3+ "version" : " 1.1 .0" ,
44 "description" : " " ,
55 "main" : " ./dist/index.js" ,
66 "module" : " ./dist/index.mjs" ,
Original file line number Diff line number Diff line change @@ -16,4 +16,6 @@ export const colors = {
1616 ignite500 : '#00875F' ,
1717 ignite700 : '#015F43' ,
1818 ignite900 : '#00291D' ,
19+
20+ test : '#FFF' ,
1921}
You can’t perform that action at this time.
0 commit comments