@wzyjs/next 0.3.29 → 0.3.31

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.
@@ -1,3 +1,5 @@
1
+ // @ts-nocheck
2
+
1
3
  // @ts-ignore
2
4
  import { App } from '@/components'
3
5
 
@@ -2,9 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.name = void 0;
4
4
  exports.default = run;
5
- const crud_1 = require("./plugin/crud");
6
- const tags_1 = require("./plugin/tags");
7
- const no_check_1 = require("./plugin/no-check");
5
+ const crud_1 = require("./crud");
6
+ const tags_1 = require("./tags");
7
+ const no_check_1 = require("./no-check");
8
8
  exports.name = 'Generate CRUD, Tags and Generated File Banners';
9
9
  async function run(model, options) {
10
10
  // 检查配置
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@wzyjs/next",
3
- "version": "0.3.29",
3
+ "version": "0.3.31",
4
4
  "description": "description",
5
5
  "author": "wzy",
6
- "main": "dist/index.js",
6
+ "main": "dist/plugin/index.js",
7
+ "exports": {
8
+ ".": "./dist/plugin/index.js",
9
+ "./Base.zmodel": "./dist/Base.zmodel"
10
+ },
7
11
  "scripts": {
8
12
  "build:plugin": "tsc",
9
13
  "rm": "rm -rf dist",
@@ -21,7 +25,7 @@
21
25
  "@types/node": "^20.19.23",
22
26
  "typescript": "^5.9.3"
23
27
  },
24
- "gitHead": "a78702bb9367a10779eaa376ed70834d8b42b5a8",
28
+ "gitHead": "896e51ffcc433e65605c351be0595918bc32573e",
25
29
  "publishConfig": {
26
30
  "access": "public"
27
31
  }