@nodish/core 0.1.2 → 0.1.3
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 +3 -3
- package/readme.md +3 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nodish/core",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.css"
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
|
-
"
|
|
25
|
-
"dev": "vite --config vite.config.dev.ts",
|
|
24
|
+
"setup:local": "node scripts/copy-dev-to-local.mjs",
|
|
25
|
+
"dev": "node scripts/copy-dev-to-local.mjs && vite --config vite.config.dev.ts",
|
|
26
26
|
"build": "vite build --config vite.config.pack.ts && vite build --config vite.config.vue.ts && dts-bundle-generator --export-referenced-types --no-check -o dist/pack.d.ts src/pack/index.ts",
|
|
27
27
|
"typecheck": "tsc --noEmit"
|
|
28
28
|
},
|
package/readme.md
CHANGED
|
@@ -5,8 +5,9 @@ An extensible node editor.
|
|
|
5
5
|
## Development
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm i
|
|
9
|
-
npm run dev
|
|
8
|
+
npm i
|
|
9
|
+
npm run setup:local # copies /dev → /local (first time only; local/ is gitignored)
|
|
10
|
+
npm run dev
|
|
10
11
|
```
|
|
11
12
|
|
|
12
13
|
## Examples
|