srcdev-nuxt-components 9.0.2 → 9.0.4

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/nuxt.config.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  // https://nuxt.com/docs/api/configuration/nuxt-config
2
- const isStandalone = !!process.env.NUXT_STANDALONE;
2
+ const isStandalone = !!process.env.SRCDEV_STANDALONE;
3
3
 
4
4
  export default defineNuxtConfig({
5
5
  devtools: { enabled: true },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "9.0.2",
4
+ "version": "9.0.4",
5
5
  "main": "nuxt.config.ts",
6
6
  "types": "types.d.ts",
7
7
  "license": "MIT",
@@ -14,28 +14,26 @@
14
14
  "cleanall": "rm -rf node_modules && rm -rf .nuxt && rm -rf .output && rm package-lock.json",
15
15
  "reinstall": "rm -rf node_modules && npm install",
16
16
  "cleaninstall": "npm run clean && npm run reinstall",
17
- "dev": "NUXT_STANDALONE=true nuxi dev",
18
- "build": "NUXT_STANDALONE=true nuxt build",
19
- "generate": "NUXT_STANDALONE=true nuxt generate",
20
- "preview": "NUXT_STANDALONE=true nuxt preview",
17
+ "dev": "SRCDEV_STANDALONE=true nuxi dev",
18
+ "build": "SRCDEV_STANDALONE=true nuxt build",
19
+ "generate": "SRCDEV_STANDALONE=true nuxt generate",
20
+ "preview": "SRCDEV_STANDALONE=true nuxt preview",
21
21
  "lint": "eslint .",
22
- "prepare": "NUXT_STANDALONE=true nuxt prepare",
22
+ "prepare": "SRCDEV_STANDALONE=true nuxt prepare",
23
23
  "release": "release-it",
24
- "test": "NUXT_STANDALONE=true vitest",
25
- "test:run": "NUXT_STANDALONE=true vitest --run",
26
- "test:ui": "NUXT_STANDALONE=true vitest --ui",
27
- "test:update": "NUXT_STANDALONE=true vitest --update",
28
- "storybook": "NUXT_STANDALONE=true storybook dev -p 6006",
29
- "storybook:build": "NUXT_STANDALONE=true storybook build",
24
+ "test": "SRCDEV_STANDALONE=true vitest",
25
+ "test:run": "SRCDEV_STANDALONE=true vitest --run",
26
+ "test:ui": "SRCDEV_STANDALONE=true vitest --ui",
27
+ "test:update": "SRCDEV_STANDALONE=true vitest --update",
28
+ "storybook": "SRCDEV_STANDALONE=true storybook dev -p 6006",
29
+ "storybook:build": "SRCDEV_STANDALONE=true storybook build",
30
30
  "storybook:serve": "npm run storybook:build && npx http-server storybook-static --port 6006",
31
31
  "storybook:cache:clean": "rm -rf node_modules/.cache/storybook node_modules/.vite",
32
- "playwright": "NUXT_STANDALONE=true npx playwright test",
33
- "playwright:update": "NUXT_STANDALONE=true npx playwright test --update-snapshots"
32
+ "playwright": "SRCDEV_STANDALONE=true npx playwright test",
33
+ "playwright:update": "SRCDEV_STANDALONE=true npx playwright test --update-snapshots"
34
34
  },
35
35
  "files": [
36
36
  "app/",
37
- "types/",
38
- "app/types/components/",
39
37
  "nuxt.config.ts",
40
38
  "types.d.ts"
41
39
  ],