Skip to content

Commit

Permalink
8709 task: design token prototyping pr feedback
Browse files Browse the repository at this point in the history
* added token build process to build and dev processes to ensure generated variables are always available
* removed rgb colour values from tokens list
  • Loading branch information
creido-welly committed Jul 30, 2021
1 parent 7cc62e5 commit 10da041
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"build:clean": "rm -rf dist ssr",
"build:tokens": "style-dictionary build",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:clean && npm run build:types && rollup -c ./config/rollup.config.js --environment NODE_ENV:production && node ./ssr/html.js",
"dev": "npm run build:types && rollup -c ./config/rollup.config.js -w",
"build": "npm run build:clean && npm run build:types && build:tokens && rollup -c ./config/rollup.config.js --environment NODE_ENV:production && node ./ssr/html.js",
"dev": "npm run build:types && build:tokens && rollup -c ./config/rollup.config.js -w",
"lint": "npm run lint:style && npm run lint:js",
"lint:js": "eslint --fix ./src --ext .js,.jsx,.ts,.tsx && echo 'JS linting complete'",
"lint:style": "stylelint --fix '**/*.scss' && echo 'Style linting complete'",
Expand Down
7 changes: 2 additions & 5 deletions src/tokens/colour/base.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"colour": {
"black": { "value": "#000" },
"black-rgb": { "value": "0, 0, 0" },
"white": { "value": "#fff" },
"white-rgb": { "value": "255, 255, 255" },
"black": { "value": "#000" },
"white": { "value": "#fff" },
"amber": {
"90": { "value": "#382a00" },
"80": { "value": "#4d3900" },
Expand Down Expand Up @@ -57,7 +55,6 @@
"80": { "value": "#292929" },
"70": { "value": "#5c5c5c" },
"60": { "value": "#767676" },
"60-rgb": { "value": "118, 118, 118" },
"50": { "value": "#878787" },
"40": { "value": "#999" },
"30": { "value": "#b3b3b3" },
Expand Down

0 comments on commit 10da041

Please sign in to comment.