@uipkge/nuxt 0.1.4 → 0.1.6

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/README.md CHANGED
@@ -98,7 +98,6 @@ i18now: {
98
98
  projectId: 'your-project-id',
99
99
  apiKey: 'your-api-key',
100
100
  host: 'http://localhost:3220',
101
- cdnUrl: 'http://localhost:3220', // if serving snapshots locally
102
101
  environment: 'dev',
103
102
  },
104
103
  ```
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.0.0"
6
6
  },
7
- "version": "0.1.4",
7
+ "version": "0.1.6",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
package/dist/module.mjs CHANGED
@@ -44,7 +44,6 @@ const module$1 = defineNuxtModule({
44
44
  src: resolver.resolve("./runtime/plugin"),
45
45
  mode: "server"
46
46
  });
47
- nuxt.options.build.transpile.push("@uipkge/core");
48
47
  if (nuxt.options.dev) {
49
48
  addServerHandler({
50
49
  route: "/api/_i18now/sync",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipkge/nuxt",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
@@ -12,9 +12,18 @@
12
12
  "files": [
13
13
  "dist"
14
14
  ],
15
+ "scripts": {
16
+ "build": "nuxt-module-build build",
17
+ "dev": "nuxt-module-build prepare",
18
+ "dev:playground": "nuxi dev playground",
19
+ "prepack": "nuxt-module-build build",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "test:coverage": "vitest run --coverage",
23
+ "release": "vitest run && nuxt-module-build build && pnpm publish --access public --no-git-checks"
24
+ },
15
25
  "dependencies": {
16
- "@nuxt/kit": "^3.0.0",
17
- "@uipkge/core": "0.1.1"
26
+ "@nuxt/kit": "^3.0.0"
18
27
  },
19
28
  "peerDependencies": {
20
29
  "vue-i18n": "^9.0.0 || ^10.0.0 || ^11.0.0",
@@ -30,17 +39,9 @@
30
39
  },
31
40
  "devDependencies": {
32
41
  "@nuxt/module-builder": "^1.0.0",
42
+ "@uipkge/core": "workspace:*",
33
43
  "happy-dom": "^17.0.0",
34
44
  "nuxt": "^3.0.0",
35
45
  "vitest": "^4.0.0"
36
- },
37
- "scripts": {
38
- "build": "nuxt-module-build build",
39
- "dev": "nuxt-module-build prepare",
40
- "dev:playground": "nuxi dev playground",
41
- "test": "vitest run",
42
- "test:watch": "vitest",
43
- "test:coverage": "vitest run --coverage",
44
- "release": "vitest run && nuxt-module-build build && pnpm publish --access public --no-git-checks"
45
46
  }
46
- }
47
+ }