adminizer 4.1.0-build.0 → 4.1.0-build.1

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 (1) hide show
  1. package/package.json +4 -4
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "adminizer",
3
3
  "type": "module",
4
- "version": "4.1.0-build.0",
4
+ "version": "4.1.0-build.1",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
- "start": "tsx --tsconfig ./waterlineFixture/tsconfig.json ./waterlineFixture/index.ts",
9
- "dev": "cross-env VITE_ENV=dev tsx watch --tsconfig ./waterlineFixture/tsconfig.json ./waterlineFixture/index.ts",
8
+ "start": "tsx --tsconfig ./fixture/tsconfig.json ./fixture/index.ts",
9
+ "dev": "cross-env VITE_ENV=dev tsx watch --tsconfig ./fixture/tsconfig.json ./fixture/index.ts",
10
10
  "build:assets": "vite build",
11
11
  "compile:backend": "tsc -p src/tsconfig.json",
12
12
  "watch:backend": "tsc -w -p src/tsconfig.json",
@@ -17,7 +17,7 @@
17
17
  "build:react-quill": "vite build --config modules/controls/wysiwyg/vite.config.react-quill.ts",
18
18
  "copy:modules": "node copy-modules.js",
19
19
  "build:assets:modules": "npm run build:assets && npm run copy:modules",
20
- "start:seed": "cross-env SEED_DATA=true tsx --tsconfig ./waterlineFixture/tsconfig.json ./waterlineFixture/index.ts",
20
+ "start:seed": "cross-env SEED_DATA=true tsx --tsconfig ./fixture/tsconfig.json ./fixture/index.ts",
21
21
  "demo:build": "npm run copy:backend && npm run compile:backend && npm run build:assets && npm run copy:modules",
22
22
  "demo": "cross-env DEMO=true npm run start:seed"
23
23
  },