@volvo-cars/css 0.6.1 → 0.6.2
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/package.json +10 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volvo-cars/css",
|
|
3
3
|
"description": "Volvo Cars shared CSS",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.2",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "module",
|
|
@@ -101,14 +101,16 @@
|
|
|
101
101
|
},
|
|
102
102
|
"scripts": {
|
|
103
103
|
"build": "yarn run build:css && tsup",
|
|
104
|
-
"build:prod": "rm -rf dist && yarn run build:css && tsup --sourcemap --minify && yarn run build:dts",
|
|
105
|
-
"build:dts": "tsc -p tsconfig.build.json",
|
|
106
104
|
"build:css": "node scripts/build-css.js",
|
|
107
105
|
"build:css-types": "node scripts/build-types.js",
|
|
108
|
-
"
|
|
106
|
+
"build:dts": "tsc -p tsconfig.build.json",
|
|
107
|
+
"build:prod": "rm -rf dist && yarn run build:css && tsup --sourcemap --minify && yarn run build:dts",
|
|
108
|
+
"clean": "rm -rf .turbo dist && rm -rf *.tsbuildinfo",
|
|
109
|
+
"dev": "yarn run watch:js & yarn run watch:css",
|
|
109
110
|
"test": "yarn run -T jest packages/css",
|
|
110
111
|
"types:check": "tsc -b tsconfig.src-check.json tsconfig.tests.json --verbose",
|
|
111
|
-
"
|
|
112
|
+
"watch:css": "chokidar \"src/**/*.css\" -c 'yarn run build:css'",
|
|
113
|
+
"watch:js": "tsup --watch"
|
|
112
114
|
},
|
|
113
115
|
"repository": {
|
|
114
116
|
"type": "git",
|
|
@@ -119,8 +121,9 @@
|
|
|
119
121
|
"@types/css-tree": "2.0.0",
|
|
120
122
|
"@volvo-cars/browserslist-config": "workspace:*",
|
|
121
123
|
"browserslist": "4.21.4",
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
+
"chokidar-cli": "^3.0.0",
|
|
125
|
+
"css-tree": "2.3.1",
|
|
126
|
+
"lightningcss": "1.18.0",
|
|
124
127
|
"lodash": "4.17.21",
|
|
125
128
|
"tsup": "6.5.0",
|
|
126
129
|
"typescript": "4.9.4"
|