nuxt-bun-compile 0.1.7 → 0.1.8
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/dist/module.json +1 -1
- package/package.json +7 -16
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,23 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-bun-compile",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Nuxt module that automatically configures Nitro for `bun build --compile`, generating a standalone executable binary from your Nuxt app.",
|
|
5
5
|
"repository": "jprando/nuxt-bun-compile",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"exports": {
|
|
9
|
-
".":
|
|
10
|
-
|
|
11
|
-
"import": "./dist/module.mjs"
|
|
12
|
-
},
|
|
13
|
-
"./module": {
|
|
14
|
-
"types": "./dist/types.d.mts",
|
|
15
|
-
"import": "./dist/module.mjs"
|
|
16
|
-
},
|
|
17
|
-
"./*": {
|
|
18
|
-
"types": "./dist/types.d.mts",
|
|
19
|
-
"import": "./dist/*"
|
|
20
|
-
}
|
|
9
|
+
".": "./dist/module.mjs",
|
|
10
|
+
"./*": "./dist/*"
|
|
21
11
|
},
|
|
22
12
|
"main": "./dist/module.mjs",
|
|
23
13
|
"module": "./dist/module.mjs",
|
|
@@ -38,6 +28,7 @@
|
|
|
38
28
|
"scripts": {
|
|
39
29
|
"dev": "bunx --bun nuxt dev playground",
|
|
40
30
|
"dev:build": "bun --bun nuxt build playground",
|
|
31
|
+
"dev:prepare": "bunx --bun nuxt-module-build build --stub && bunx --bun nuxt-module-build prepare && bunx --bun nuxt prepare playground",
|
|
41
32
|
"format": "bun run --bun dprint fmt package.json tsconfig.json dprint.json ./src/*.ts ./src/**/*.ts",
|
|
42
33
|
"lint": "bun run --bun eslint .",
|
|
43
34
|
"test": "bun run vitest run",
|
|
@@ -45,9 +36,9 @@
|
|
|
45
36
|
"test:types": "bun run --bun vue-tsc --noEmit && bun run --cwd playground --bun vue-tsc --noEmit",
|
|
46
37
|
"release": "bun prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
47
38
|
"prepack": "bunx --bun nuxt-module-build build",
|
|
48
|
-
"predev": "
|
|
49
|
-
"predev:build": "bun
|
|
50
|
-
"prerelease": "bun format && bun lint && bun
|
|
39
|
+
"predev": "bun dev:prepare",
|
|
40
|
+
"predev:build": "bun dev:prepare",
|
|
41
|
+
"prerelease": "bun format && bun lint && bun dev:prepare && bun run test",
|
|
51
42
|
"prepare": "bunx --bun husky",
|
|
52
43
|
"clear": "rm -rf node_modules .nuxt dist package-lock.json pnpm-lock.yaml nuxt-bun-compile-*.tgz playground/node_modules playground/.nuxt playground/.output playground/nuxtbin test/fixtures/basic/node_modules test/fixtures/basic/.nuxt"
|
|
53
44
|
},
|