@pure-ds/core 0.4.28 → 0.4.29
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 +11 -11
- package/packages/pds-cli/bin/{pds-dx.js → pds-dx.mjs} +2 -2
- package/packages/pds-cli/bin/{pds-init-config.js → pds-init-config.mjs} +1 -1
- package/packages/pds-cli/bin/{pds-static.js → pds-static.mjs} +3 -3
- /package/packages/pds-cli/bin/{generate-css-data.js → generate-css-data.mjs} +0 -0
- /package/packages/pds-cli/bin/{generate-manifest.js → generate-manifest.mjs} +0 -0
- /package/packages/pds-cli/bin/{pds-build-icons.js → pds-build-icons.mjs} +0 -0
- /package/packages/pds-cli/bin/{pds-setup-copilot.js → pds-setup-copilot.mjs} +0 -0
- /package/packages/pds-cli/bin/{pds.js → pds.mjs} +0 -0
- /package/packages/pds-cli/bin/{sync-assets.js → sync-assets.mjs} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pure-ds/core",
|
|
3
3
|
"shortname": "pds",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.29",
|
|
5
5
|
"description": "Pure Design System - Why develop a Design System when you can generate one?",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"module": "./public/assets/js/pds.js",
|
|
27
27
|
"types": "./dist/types/pds.d.ts",
|
|
28
28
|
"bin": {
|
|
29
|
-
"pds-export": "packages/pds-cli/bin/pds-static.
|
|
30
|
-
"pds-sync-assets": "packages/pds-cli/bin/sync-assets.
|
|
31
|
-
"pds-build-icons": "packages/pds-cli/bin/pds-build-icons.
|
|
32
|
-
"pds-setup-copilot": "packages/pds-cli/bin/pds-setup-copilot.
|
|
33
|
-
"pds-init-config": "packages/pds-cli/bin/pds-init-config.
|
|
29
|
+
"pds-export": "packages/pds-cli/bin/pds-static.mjs",
|
|
30
|
+
"pds-sync-assets": "packages/pds-cli/bin/sync-assets.mjs",
|
|
31
|
+
"pds-build-icons": "packages/pds-cli/bin/pds-build-icons.mjs",
|
|
32
|
+
"pds-setup-copilot": "packages/pds-cli/bin/pds-setup-copilot.mjs",
|
|
33
|
+
"pds-init-config": "packages/pds-cli/bin/pds-init-config.mjs"
|
|
34
34
|
},
|
|
35
35
|
"exports": {
|
|
36
36
|
".": {
|
|
@@ -76,11 +76,11 @@
|
|
|
76
76
|
"types": "tsc -p tsconfig.json && node scripts/sync-types.mjs",
|
|
77
77
|
"postinstall": "node packages/pds-cli/bin/postinstall.mjs",
|
|
78
78
|
"prepds:export": "npm run types",
|
|
79
|
-
"pds:export": "node packages/pds-cli/bin/pds-static.
|
|
80
|
-
"pds:build-icons": "node packages/pds-cli/bin/pds-build-icons.
|
|
81
|
-
"pds:manifest": "node packages/pds-cli/bin/generate-manifest.
|
|
82
|
-
"pds:css-data": "node packages/pds-cli/bin/generate-css-data.
|
|
83
|
-
"pds:dx": "node packages/pds-cli/bin/pds-dx.
|
|
79
|
+
"pds:export": "node packages/pds-cli/bin/pds-static.mjs",
|
|
80
|
+
"pds:build-icons": "node packages/pds-cli/bin/pds-build-icons.mjs",
|
|
81
|
+
"pds:manifest": "node packages/pds-cli/bin/generate-manifest.mjs",
|
|
82
|
+
"pds:css-data": "node packages/pds-cli/bin/generate-css-data.mjs",
|
|
83
|
+
"pds:dx": "node packages/pds-cli/bin/pds-dx.mjs",
|
|
84
84
|
"storybook:generate": "cd packages/pds-storybook && npm run generate-stories",
|
|
85
85
|
"storybook:dev": "cd packages/pds-storybook && npm run storybook:dev",
|
|
86
86
|
"storybook:build": "cd packages/pds-storybook && npm run storybook:build"
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* This provides complete IDE support for consuming projects
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
|
-
import { generateManifest } from './generate-manifest.
|
|
13
|
-
import { generateCSSData } from './generate-css-data.
|
|
12
|
+
import { generateManifest } from './generate-manifest.mjs';
|
|
13
|
+
import { generateCSSData } from './generate-css-data.mjs';
|
|
14
14
|
|
|
15
15
|
// Colors for terminal output
|
|
16
16
|
const COLORS = {
|
|
@@ -22,9 +22,9 @@ import path from 'path';
|
|
|
22
22
|
import { fileURLToPath, pathToFileURL } from 'url';
|
|
23
23
|
|
|
24
24
|
import { discoverWebRoot } from './postinstall.mjs';
|
|
25
|
-
import { runPdsBuildIcons } from './pds-build-icons.
|
|
26
|
-
import { generateManifest } from './generate-manifest.
|
|
27
|
-
import { generateCSSData } from './generate-css-data.
|
|
25
|
+
import { runPdsBuildIcons } from './pds-build-icons.mjs';
|
|
26
|
+
import { generateManifest } from './generate-manifest.mjs';
|
|
27
|
+
import { generateCSSData } from './generate-css-data.mjs';
|
|
28
28
|
import {
|
|
29
29
|
resolvePublicAssetDirectory,
|
|
30
30
|
resolvePublicAssetURL,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|