@microsoft/atlas-css 3.25.1 → 3.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/class-names.json +1 -0
- package/dist/class-names.ts +160 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +5 -3
- package/src/components/card.scss +1 -1
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/atlas-css",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.26.0",
|
|
4
4
|
"description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
7
|
"lint": "stylelint \"./src/**/*.scss\"",
|
|
8
8
|
"lint-fix": "stylelint \"./src/**/*.scss\" --fix",
|
|
9
9
|
"start": "parcel watch src/index.scss --no-autoinstall",
|
|
10
|
-
"build": "npm run build:css && npm run tokens",
|
|
10
|
+
"build": "npm run build:css && npm run tokens && npm run class-names",
|
|
11
11
|
"build:css": "parcel build src/index.scss --no-cache --no-autoinstall",
|
|
12
12
|
"tokens": "node ./tokens/index.js",
|
|
13
|
+
"class-names": "node ./class-names/index.js",
|
|
13
14
|
"prepublishOnly": "npm run lint && npm run build"
|
|
14
15
|
},
|
|
15
16
|
"homepage": "https://github.com/microsoft/atlas-design",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"stylelint-prettier": "^2.0.0",
|
|
47
48
|
"fs-extra": "^10.0.1",
|
|
48
49
|
"quicktype-core": "^6.0.70",
|
|
49
|
-
"sass-export": "^2.1.0"
|
|
50
|
+
"sass-export": "^2.1.0",
|
|
51
|
+
"css-tree": "^2.2.1"
|
|
50
52
|
}
|
|
51
53
|
}
|