@plumeria/core 0.6.7 → 0.6.9

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.
Files changed (1) hide show
  1. package/package.json +6 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plumeria/core",
3
- "version": "0.6.7",
3
+ "version": "0.6.9",
4
4
  "description": "Near Zero-runtime CSS-in-JS for efficient design systems.",
5
5
  "keywords": [
6
6
  "react",
@@ -9,7 +9,6 @@
9
9
  "plumeria",
10
10
  "styling"
11
11
  ],
12
- "author": "Refirst",
13
12
  "repository": "github:zss-in-js/plumeria",
14
13
  "license": "MIT",
15
14
  "sideEffects": false,
@@ -39,16 +38,16 @@
39
38
  "types/"
40
39
  ],
41
40
  "dependencies": {
42
- "zss-engine": "^0.2.7",
43
- "@plumeria/collection": "^0.4.0"
41
+ "zss-engine": "^0.2.9",
42
+ "@plumeria/collection": "^0.4.1"
44
43
  },
45
44
  "publishConfig": {
46
45
  "access": "public"
47
46
  },
48
47
  "scripts": {
49
- "build": "shx rm -rf dist types && pnpm esm && pnpm cjs && pnpm css",
50
- "css": "shx cp -r src/styles dist",
48
+ "build": "rimraf dist types && pnpm esm && pnpm cjs && pnpm css",
49
+ "css": "cpy 'src/styles/**' 'dist/styles'",
51
50
  "cjs": "tsc --project tsconfig.cjs.json",
52
- "esm": "tsc --project tsconfig.esm.json && node build.esm.js"
51
+ "esm": "tsc --project tsconfig.esm.json && node ../../esm.create.mjs"
53
52
  }
54
53
  }