@wwtdev/bsds-css 3.0.17 → 3.1.1
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/README.md +1 -1
- package/dist/wwt-bsds-components.css +171 -54
- package/dist/wwt-bsds-components.min.css +1 -1
- package/dist/wwt-bsds-preset.js +3 -3
- package/dist/wwt-bsds-tokens.css +250 -246
- package/dist/wwt-bsds-tokens.min.css +1 -1
- package/dist/wwt-bsds-utilities.css +2 -2
- package/dist/wwt-bsds-utilities.min.css +1 -1
- package/dist/wwt-bsds.css +483 -362
- package/dist/wwt-bsds.min.css +1 -1
- package/package.json +6 -22
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wwtdev/bsds-css",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.1.1",
|
|
4
|
+
"description": "WWT Blue Steel Design System CSS Framework.",
|
|
5
5
|
"main": "./dist",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/*"
|
|
@@ -16,29 +16,14 @@
|
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "node .build/
|
|
19
|
+
"build:clean": "node .build/clean.js",
|
|
20
20
|
"build:components": "postcss src/styles/wwt-bsds-components.css -o dist/wwt-bsds-components.css && uglifycss dist/wwt-bsds-components.css > dist/wwt-bsds-components.min.css",
|
|
21
21
|
"build:css": "postcss src/styles/wwt-bsds.css -o dist/wwt-bsds.css && uglifycss dist/wwt-bsds.css > dist/wwt-bsds.min.css",
|
|
22
22
|
"build:preset": "node .build/copyFiles src/wwt-bsds-preset.js dist/wwt-bsds-preset.js",
|
|
23
23
|
"build:tokens": "postcss src/styles/wwt-bsds-tokens.css -o dist/wwt-bsds-tokens.css && uglifycss dist/wwt-bsds-tokens.css > dist/wwt-bsds-tokens.min.css",
|
|
24
24
|
"build:utilities": "postcss src/styles/wwt-bsds-utilities.css -o dist/wwt-bsds-utilities.css && uglifycss dist/wwt-bsds-utilities.css > dist/wwt-bsds-utilities.min.css",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"ci:check": "node ../../.build/check-run.js",
|
|
28
|
-
"ci:publish-npm": "npm run ci:check publish-npm css-framework",
|
|
29
|
-
"ci:publish-wwt:rc": "npm run ci:check publish-wwt:rc css-framework",
|
|
30
|
-
"ci:publish-wwt:next-rc": "npm run ci:check publish-wwt:next-rc css-framework",
|
|
31
|
-
"ci:publish-wwt": "npm run ci:check publish-wwt css-framework",
|
|
32
|
-
"ci:tag:latest:rc": "npm run ci:check tag:latest:rc css-framework",
|
|
33
|
-
"ci:tag:latest:next-rc": "npm run ci:check tag:latest:next-rc css-framework",
|
|
34
|
-
"ci:tag:latest": "npm run ci:check tag:latest css-framework",
|
|
35
|
-
"publish-npm": "npm publish --@wwtdev:registry=https://registry.npmjs.org --access=public",
|
|
36
|
-
"publish-wwt:rc": "publish-wwt-package --monorepo=css-framework --branch=develop --skip-tag",
|
|
37
|
-
"publish-wwt:next-rc": "publish-wwt-package --monorepo=css-framework --branch=develop-next --skip-tag",
|
|
38
|
-
"publish-wwt": "publish-wwt-package --monorepo=css-framework",
|
|
39
|
-
"tag:latest:rc": "git tag -f css-framework@latest-rc && git push origin -f css-framework@latest-rc",
|
|
40
|
-
"tag:latest:next-rc": "git tag -f css-framework@latest-next-rc && git push origin -f css-framework@latest-next-rc",
|
|
41
|
-
"tag:latest": "git tag -f css-framework@latest && git push origin -f css-framework@latest",
|
|
25
|
+
"build": "npm run build:clean && node .build/cssPropsGenerator.js && npm run build:css && npm run build:components && npm run build:preset && npm run build:tokens && npm run build:utilities",
|
|
26
|
+
"do-publish": "node ../../.build/publish.js",
|
|
42
27
|
"watch": "npm-watch"
|
|
43
28
|
},
|
|
44
29
|
"license": "UNLICENSED",
|
|
@@ -52,8 +37,7 @@
|
|
|
52
37
|
"postcss-easy-import": "^4.0.0",
|
|
53
38
|
"prettier": "^2.6.2",
|
|
54
39
|
"tailwindcss": "^3.4.1",
|
|
55
|
-
"uglifycss": "^0.0.29"
|
|
56
|
-
"wwt-package-publisher": "^4.1.3"
|
|
40
|
+
"uglifycss": "^0.0.29"
|
|
57
41
|
},
|
|
58
42
|
"browserslist": [
|
|
59
43
|
"defaults"
|