@infly/libs 2.0.51 → 2.0.53

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 (2) hide show
  1. package/bin/cli.js +0 -0
  2. package/package.json +16 -17
package/bin/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infly/libs",
3
- "version": "2.0.51",
3
+ "version": "2.0.53",
4
4
  "description": "不受前端框架限制的独立工具库",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -23,21 +23,6 @@
23
23
  "!**/*.test.js",
24
24
  "!**/*.test.mjs"
25
25
  ],
26
- "scripts": {
27
- "test": "vitest run",
28
- "test:coverage": "vitest run --coverage",
29
- "test:watch": "vitest",
30
- "check": "vitest run core-entry.test.js",
31
- "prepublishOnly": "pnpm test",
32
- "lint": "eslint .",
33
- "lint:strict": "eslint . --max-warnings 0",
34
- "postinstall": "node adapters/vue2/postinstall.js",
35
- "publishPkg": "npm publish --access=public --registry=https://registry.npmjs.org/",
36
- "preview": "infly-libs --preview",
37
- "preview:no-build": "infly-libs --preview --no-build",
38
- "origin:preview": "infly-libs --preview",
39
- "origin:preview:no-build": "infly-libs --preview --no-build"
40
- },
41
26
  "bin": {
42
27
  "infly-libs": "bin/cli.js"
43
28
  },
@@ -135,5 +120,19 @@
135
120
  "staging [禁用更新版本号的环境, 比如测试环境构建不需要更新version, 不配置默认禁用stage测试环境]"
136
121
  ]
137
122
  }
123
+ },
124
+ "scripts": {
125
+ "test": "vitest run",
126
+ "test:coverage": "vitest run --coverage",
127
+ "test:watch": "vitest",
128
+ "check": "vitest run core-entry.test.js",
129
+ "lint": "eslint .",
130
+ "lint:strict": "eslint . --max-warnings 0",
131
+ "postinstall": "node adapters/vue2/postinstall.js",
132
+ "publishPkg": "pnpm publish --access=public --registry=https://registry.npmjs.org/ --no-git-checks",
133
+ "preview": "infly-libs --preview",
134
+ "preview:no-build": "infly-libs --preview --no-build",
135
+ "origin:preview": "infly-libs --preview",
136
+ "origin:preview:no-build": "infly-libs --preview --no-build"
138
137
  }
139
- }
138
+ }