moyan-mfw-base 1.0.0 → 1.0.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 +17 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moyan-mfw-base",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "墨焱MFW核心框架",
5
5
  "main": "./src/shared/dist/index.js",
6
6
  "types": "./src/shared/dist/index.d.ts",
@@ -38,7 +38,10 @@
38
38
  },
39
39
  "typesVersions": {
40
40
  "*": {
41
- "*": ["./src/*/dist/*.d.ts", "./src/*/dist/index.d.ts"]
41
+ "*": [
42
+ "./src/*/dist/*.d.ts",
43
+ "./src/*/dist/index.d.ts"
44
+ ]
42
45
  }
43
46
  },
44
47
  "scripts": {
@@ -51,10 +54,20 @@
51
54
  "typecheck:shared": "pnpm --filter @internal/base-shared typecheck",
52
55
  "typecheck:backend": "pnpm --filter @internal/base-backend typecheck",
53
56
  "typecheck:frontend": "pnpm --filter @internal/base-frontend typecheck",
54
- "typecheck": "pnpm run typecheck:shared && pnpm run typecheck:backend && pnpm run typecheck:frontend"
57
+ "typecheck": "pnpm run typecheck:shared && pnpm run typecheck:backend && pnpm run typecheck:frontend",
58
+ "release:patch": "npm version patch && pnpm build && npm publish",
59
+ "release:minor": "npm version minor && pnpm build && npm publish",
60
+ "release:major": "npm version major && pnpm build && npm publish"
55
61
  },
56
62
  "license": "MIT",
57
- "keywords": ["moyan", "mfw", "admin", "framework", "nestjs", "vue3"],
63
+ "keywords": [
64
+ "moyan",
65
+ "mfw",
66
+ "admin",
67
+ "framework",
68
+ "nestjs",
69
+ "vue3"
70
+ ],
58
71
  "files": [
59
72
  "src/backend/dist",
60
73
  "src/frontend/dist",