nuxt-bun-compile 0.1.6 → 0.1.7

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 (2) hide show
  1. package/dist/module.json +1 -1
  2. package/package.json +15 -12
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-bun-compile",
3
3
  "configKey": "bunCompile",
4
- "version": "0.1.6",
4
+ "version": "0.1.7",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-bun-compile",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
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",
@@ -36,17 +36,20 @@
36
36
  "playground"
37
37
  ],
38
38
  "scripts": {
39
- "prepack": "nuxt-module-build build",
40
- "dev": "npm run dev:prepare && nuxt dev playground",
41
- "dev:build": "nuxt build playground",
42
- "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
43
- "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
44
- "lint": "eslint .",
45
- "test": "vitest run",
46
- "test:watch": "vitest watch",
47
- "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
48
- "format": "dprint fmt package.json tsconfig.json dprint.json ./src/*.ts ./src/**/*.ts",
49
- "prepare": "husky"
39
+ "dev": "bunx --bun nuxt dev playground",
40
+ "dev:build": "bun --bun nuxt build playground",
41
+ "format": "bun run --bun dprint fmt package.json tsconfig.json dprint.json ./src/*.ts ./src/**/*.ts",
42
+ "lint": "bun run --bun eslint .",
43
+ "test": "bun run vitest run",
44
+ "test:watch": "bun run --bun vitest watch",
45
+ "test:types": "bun run --bun vue-tsc --noEmit && bun run --cwd playground --bun vue-tsc --noEmit",
46
+ "release": "bun prepack && changelogen --release && npm publish && git push --follow-tags",
47
+ "prepack": "bunx --bun nuxt-module-build build",
48
+ "predev": "bunx --bun nuxt-module-build build --stub && bunx --bun nuxt-module-build prepare && bunx --bun nuxt prepare playground",
49
+ "predev:build": "bun predev",
50
+ "prerelease": "bun format && bun lint && bun predev && bun run test",
51
+ "prepare": "bunx --bun husky",
52
+ "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"
50
53
  },
51
54
  "dependencies": {
52
55
  "@nuxt/kit": "^4.3.1"