@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pure-ds/core",
3
3
  "shortname": "pds",
4
- "version": "0.4.28",
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.js",
30
- "pds-sync-assets": "packages/pds-cli/bin/sync-assets.js",
31
- "pds-build-icons": "packages/pds-cli/bin/pds-build-icons.js",
32
- "pds-setup-copilot": "packages/pds-cli/bin/pds-setup-copilot.js",
33
- "pds-init-config": "packages/pds-cli/bin/pds-init-config.js"
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.js",
80
- "pds:build-icons": "node packages/pds-cli/bin/pds-build-icons.js",
81
- "pds:manifest": "node packages/pds-cli/bin/generate-manifest.js",
82
- "pds:css-data": "node packages/pds-cli/bin/generate-css-data.js",
83
- "pds:dx": "node packages/pds-cli/bin/pds-dx.js",
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.js';
13
- import { generateCSSData } from './generate-css-data.js';
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 = {
@@ -5,7 +5,7 @@
5
5
  * Usage: npx pds-init-config [--force]
6
6
  */
7
7
 
8
- import { ensurePdsConfig } from './postinstall.js';
8
+ import { ensurePdsConfig } from './postinstall.mjs';
9
9
  import { resolve } from 'path';
10
10
 
11
11
  const args = process.argv.slice(2);
@@ -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.js';
26
- import { generateManifest } from './generate-manifest.js';
27
- import { generateCSSData } from './generate-css-data.js';
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