Skip to content

Commit 820e3aa

Browse files
committed
fix: add type token integration
1 parent 0fa05dd commit 820e3aa

File tree

8 files changed

+27
-298
lines changed

8 files changed

+27
-298
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ docTemplates/
66
## Demo support files
77
demo/*.css
88
demo/*.css.map
9+
demo/*.md
10+
demo/*.min.js
911

1012
## CSS built from Sass process
1113
src/*.css

demo/api.md

Lines changed: 0 additions & 100 deletions
This file was deleted.

demo/index.md

Lines changed: 0 additions & 158 deletions
This file was deleted.

package-lock.json

Lines changed: 11 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
},
2222
"dependencies": {
2323
"@aurodesignsystem/auro-library": "^4.3.0",
24-
"@aurodesignsystem/design-tokens": "^5.10.0",
25-
"@aurodesignsystem/webcorestylesheets": "6.1.0",
24+
"@aurodesignsystem/design-tokens": "^8.2.1",
25+
"@aurodesignsystem/webcorestylesheets": "10.0.0",
2626
"chalk": "^5.3.0",
2727
"lit": "^3.3.0"
2828
},
@@ -142,7 +142,7 @@
142142
"build:dev:assets": "npm-run-all build:sass:component postCss:component sass:render build:docs",
143143
"build:docs": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/generateDocs.mjs",
144144
"build:sass": "npm-run-all build:sass:component postCss:component sass:render",
145-
"build:sass:component": "sass --no-source-map src:src",
145+
"build:sass:component": "sass --load-path=node_modules --no-source-map src:src",
146146
"build:watch": "nodemon -e scss,js,html --watch src --watch apiExamples/**/* --exec npm run build:dev:assets",
147147
"bundler": "rollup -c",
148148
"bundler:test": "rollup -c -w",

src/color.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// ---------------------------------------------------------------------
55

66
// Import Auro tokens
7-
@import "./../node_modules/@aurodesignsystem/design-tokens/dist/alaska/SCSSVariables--alaska";
7+
@use "@aurodesignsystem/design-tokens/dist/themes/alaska/SCSSVariables--alaska" as v;
88

99
:host {
1010
background-color: var(--ds-auro-skeleton-container-color);

0 commit comments

Comments
 (0)