ci-plus 1.1.9 → 1.2.0

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/index.ts CHANGED
@@ -8,7 +8,7 @@ console.log('D: ', Fn);
8
8
  export default {
9
9
  install: (app: App) => {
10
10
  // 注册所有组件
11
- console.log('注册所有ci-plus组件1.1.3: ');
11
+ console.log('注册所有ci-plus组件1.2.0: ');
12
12
  for (const c in components) {
13
13
  app.use(components[c]);
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ci-plus",
3
- "version": "1.1.9",
3
+ "version": "1.2.0",
4
4
  "description": "ci组件库",
5
5
  "main": "./index.ts",
6
6
  "scripts": {
package/vite.config.ts CHANGED
@@ -9,6 +9,7 @@ export default defineConfig({
9
9
  environment: 'happy-dom'
10
10
  },
11
11
  build: {
12
+ target: 'ESNext',
12
13
  //压缩
13
14
  //minify: false,
14
15
  rollupOptions: {