@jobber/components 6.116.5 → 6.116.6
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 +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "6.116.
|
|
3
|
+
"version": "6.116.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -453,16 +453,18 @@
|
|
|
453
453
|
},
|
|
454
454
|
"scripts": {
|
|
455
455
|
"build": "npm run build:pre && rollup --config && npm run build:post",
|
|
456
|
-
"build:pre": "PREBUILD_CSS=true rollup --config && cp dist/styles.css ./styles.css.backup && npm run clean",
|
|
456
|
+
"build:pre": "npm run css:types:build && PREBUILD_CSS=true rollup --config && cp dist/styles.css ./styles.css.backup && npm run clean",
|
|
457
457
|
"build:post": "mv ./styles.css.backup dist/styles.css",
|
|
458
458
|
"bootstrap": "npm run clean; npm run build",
|
|
459
459
|
"clean": "rm -rf dist/* tsconfig.rollup.tsbuildinfo",
|
|
460
|
+
"css:types:watch": "tcm -w -p \"**/*.module.css\" src",
|
|
461
|
+
"css:types:build": "tcm -p \"**/*.module.css\" src",
|
|
460
462
|
"entryPoints:build": "ts-node --project ../../tsconfig.bin.json ../../scripts/entryPoints.ts",
|
|
461
463
|
"entryPoints:clean": "npm run entryPoints:build clean",
|
|
462
464
|
"prepack": "npm run entryPoints:build",
|
|
463
465
|
"postpack": "npm run entryPoints:clean",
|
|
464
|
-
"watch": "rollup -c rollup.config.mjs --watch",
|
|
465
|
-
"storybook": "storybook dev -p 6007 --disable-telemetry",
|
|
466
|
+
"watch": "concurrently -k -n rollup,css -c yellow,magenta \"rollup -c rollup.config.mjs --watch\" \"npm run css:types:watch\"",
|
|
467
|
+
"storybook": "concurrently -k -n storybook,css -c blue,magenta \"storybook dev -p 6007 --disable-telemetry\" \"npm run css:types:watch\"",
|
|
466
468
|
"storybook:build": "storybook build --disable-telemetry"
|
|
467
469
|
},
|
|
468
470
|
"files": [
|
|
@@ -516,7 +518,7 @@
|
|
|
516
518
|
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
517
519
|
"rollup-plugin-postcss": "^4.0.2",
|
|
518
520
|
"storybook": "9.1.19",
|
|
519
|
-
"typed-css-modules": "^0.
|
|
521
|
+
"typed-css-modules": "^0.9.1"
|
|
520
522
|
},
|
|
521
523
|
"peerDependencies": {
|
|
522
524
|
"@apollo/client": "^3",
|
|
@@ -539,5 +541,5 @@
|
|
|
539
541
|
"> 1%",
|
|
540
542
|
"IE 10"
|
|
541
543
|
],
|
|
542
|
-
"gitHead": "
|
|
544
|
+
"gitHead": "b8a45899e8d301def2cbf89fcddae6464ca29c93"
|
|
543
545
|
}
|