File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+ steps :
16+ - name : Checkout
17+ uses : actions/checkout@v3
18+
19+ - name : Setup Node.js
20+ uses : actions/setup-node@v3
21+ with :
22+ node-version : 16
23+ cache : ' npm'
24+ cache-dependency-path : ' **/package-lock.json'
25+
26+ - run : npm ci
27+
28+ - name : Publish to NPM
29+ id : changesets
30+ uses : changesets/action@v1
31+ with :
32+ # This expects you to have a script called release which does a build for your packages and calls changeset publish
33+ publish : npm run release
34+ env :
35+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
36+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
37+ TURBO_TOKEN : uxcAW0l2k5tgAZZTkPOriXky
38+ TURBO_TEAM : pedr0d1as
Original file line number Diff line number Diff line change 11# @pearl-ui/tokens
22
3+ ## 2.1.0
4+
5+ ### Minor Changes
6+
7+ - Add new Color
8+
39## 2.0.0
410
511### Major Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @pearl-ui/tokens" ,
3- "version" : " 2.0 .0" ,
3+ "version" : " 2.1 .0" ,
44 "description" : " " ,
55 "main" : " dist/index.js" ,
66 "module" : " dist/index.mjs" ,
Original file line number Diff line number Diff line change 11export const colors = {
2- white : '#FFF' ,
3- black : '#000' ,
2+ white : '#FFF' ,
3+ black : '#000' ,
44
5- gray100 : '#E1E1E6' ,
6- gray200 : '#A9A9B2' ,
7- gray400 : '#7C7C8A' ,
8- gray500 : '#505059' ,
9- gray600 : '#323238' ,
10- gray700 : '#29292E' ,
11- gray800 : '#202024' ,
12- gray900 : '#121214' ,
5+ gray100 : '#E1E1E6' ,
6+ gray200 : '#A9A9B2' ,
7+ gray400 : '#7C7C8A' ,
8+ gray500 : '#505059' ,
9+ gray600 : '#323238' ,
10+ gray700 : '#29292E' ,
11+ gray800 : '#202024' ,
12+ gray900 : '#121214' ,
1313
14- pearl300 : '#00B37E' ,
15- pearl500 : '#00875F' ,
16- pearl700 : '#015F43' ,
17- pearl900 : '#00291D' ,
14+ pearl300 : '#00B37E' ,
15+ pearl500 : '#00875F' ,
16+ pearl700 : '#015F43' ,
17+ pearl900 : '#00291D' ,
18+
19+ red500 : '#ff0000' ,
1820}
You can’t perform that action at this time.
0 commit comments