fix: fix build error (#1)

* fix: fix build error

* fix: fix server dependence

Match-id-22cc76beb68e512f012e9fa4219458bd548b4c81
This commit is contained in:
OpenTiny 2023-09-26 08:40:44 +08:00
parent 0854e5190e
commit 418b96687a
90 changed files with 643 additions and 494 deletions

View File

@ -1,11 +1,5 @@
{ {
"packages": [ "packages": ["src/**", "packages/**"],
"src/*",
"src/plugins/packages/*",
"src/settings/packages/*",
"src/theme/packages/*",
"src/toolbars/packages/*"
],
"useNx": false, "useNx": false,
"version": "independent" "version": "independent"
} }

View File

@ -1,6 +1,9 @@
{ {
"name": "koa2-mock", "name": "koa2-mock",
"version": "1.0.0", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "mock服务", "description": "mock服务",
"author": "opentiny", "author": "opentiny",
"license": "WTFPL", "license": "WTFPL",
@ -13,7 +16,7 @@
"lint": "eslint --fix ." "lint": "eslint --fix ."
}, },
"dependencies": { "dependencies": {
"@opentiny/lowcode-dsl-vue": "0.4.0", "@opentiny/tiny-engine-dsl-vue": "~1.0.0",
"@seald-io/nedb": "^4.0.2", "@seald-io/nedb": "^4.0.2",
"fs-extra": "^11.1.1", "fs-extra": "^11.1.1",
"glob": "^10.3.4", "glob": "^10.3.4",

View File

@ -3227,6 +3227,9 @@
"mode": null, "mode": null,
"block_id": 989, "block_id": 989,
"version": "1.0.0", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"i18n": null, "i18n": null,
"created_app": null, "created_app": null,
"content_blocks": null "content_blocks": null

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { pageService } from '../routes/main-routes' import { pageService } from '../routes/main-routes'
import appInfo from './appinfo.json' import appInfo from './appinfo.json'
@ -50,7 +50,7 @@ export default class Schema2CodeServcice {
main: defaultMain main: defaultMain
}) })
const { generateCode } = require('@opentiny/lowcode-dsl-vue') const { generateCode } = require('@opentiny/tiny-engine-dsl-vue')
let code let code
try { try {
code = generateCode({ code = generateCode({

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine", "name": "@opentiny/tiny-engine",
"version": "1.0.0", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "TinyEngine enables developers to customize low-code platforms, build low-bit platforms online in real time, and support secondary development or integration of low-bit platform capabilities.", "description": "TinyEngine enables developers to customize low-code platforms, build low-bit platforms online in real time, and support secondary development or integration of low-bit platform capabilities.",
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"keywords": [ "keywords": [
@ -21,7 +24,6 @@
"preview": "vite preview", "preview": "vite preview",
"lint": "eslint . --ext .js,.vue,.jsx --fix", "lint": "eslint . --ext .js,.vue,.jsx --fix",
"format": "prettier --write **/*{.vue,.js,.ts,.html,.json}", "format": "prettier --write **/*{.vue,.js,.ts,.html,.json}",
"auto:publish": "node autoPublish",
"publish:core": "npm publish", "publish:core": "npm publish",
"publish:plugin": "lerna exec npm publish --scope @opentiny/tiny-engine-*", "publish:plugin": "lerna exec npm publish --scope @opentiny/tiny-engine-*",
"version": "lerna exec npm version ${version}", "version": "lerna exec npm version ${version}",

View File

@ -1,7 +1,10 @@
{ {
"name": "@opentiny/lowcode-dsl-vue", "name": "@opentiny/tiny-engine-dsl-vue",
"version": "0.3.29", "version": "1.0.1",
"main": "dist/lowcode-dsl-vue.cjs.js", "publishConfig": {
"access": "public"
},
"main": "dist/tiny-engine-dsl-vue.cjs.js",
"files": [ "files": [
"dist" "dist"
], ],
@ -12,11 +15,10 @@
"publish:npm": "npm publish --verbose" "publish:npm": "npm publish --verbose"
}, },
"dependencies": { "dependencies": {
"vue": "3.2.33", "vue": "3.2.45",
"vue-eslint-parser": "8.3.0" "vue-eslint-parser": "8.3.0"
}, },
"devDependencies": { "devDependencies": {
"@cloud/eslint-config-cbc": "^1.7.3",
"@rushstack/eslint-patch": "^1.1.1", "@rushstack/eslint-patch": "^1.1.1",
"@vue/eslint-config-prettier": "^7.0.0", "@vue/eslint-config-prettier": "^7.0.0",
"eslint": "^8.12.0", "eslint": "^8.12.0",

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-canvas", "name": "@opentiny/tiny-engine-canvas",
"version": "1.0.5", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "vite build", "build": "vite build",

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -66,7 +66,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', 'vue-i18n', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', 'vue-i18n', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
}, },
minify: true minify: true
} }

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-common", "name": "@opentiny/tiny-engine-common",
"version": "1.0.0", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -35,7 +35,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', 'monaco-editor', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/, /^prettier.*/] external: ['vue', 'monaco-editor', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/, /^prettier.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-controller", "name": "@opentiny/tiny-engine-controller",
"version": "1.0.0", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -29,7 +29,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-http", "name": "@opentiny/tiny-engine-http",
"version": "1.0.0", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -32,7 +32,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-i18n-host", "name": "@opentiny/tiny-engine-i18n-host",
"version": "1.0.0", "version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "webcomponent vue i18n host", "description": "webcomponent vue i18n host",
"author": "tinybuilder", "author": "tinybuilder",
"scripts": { "scripts": {

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-block", "name": "@opentiny/tiny-engine-plugin-block",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-bridge", "name": "@opentiny/tiny-engine-plugin-bridge",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-data", "name": "@opentiny/tiny-engine-plugin-data",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['monaco-editor', 'vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['monaco-editor', 'vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-datasource", "name": "@opentiny/tiny-engine-plugin-datasource",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -83,7 +83,7 @@ import { camelize, capitalize } from '@vue/shared'
import { Grid, Pager, Button, Input, Numeric, DatePicker, Switch, Slider, Link } from '@opentiny/vue' import { Grid, Pager, Button, Input, Numeric, DatePicker, Switch, Slider, Link } from '@opentiny/vue'
import { IconPlusCircle, IconImport } from '@opentiny/vue-icon' import { IconPlusCircle, IconImport } from '@opentiny/vue-icon'
import { PluginSetting } from '@opentiny/tiny-engine-common' import { PluginSetting } from '@opentiny/tiny-engine-common'
import { utils } from '@opentiny/tiny-engineils' import { utils } from '@opentiny/tiny-engine-utils'
import { useModal, useLayout, useNotify } from '@opentiny/tiny-engine-controller' import { useModal, useLayout, useNotify } from '@opentiny/tiny-engine-controller'
import { getSchema } from '@opentiny/tiny-engine-canvas' import { getSchema } from '@opentiny/tiny-engine-canvas'
import useClipboard from 'vue-clipboard3' import useClipboard from 'vue-clipboard3'

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-help", "name": "@opentiny/tiny-engine-plugin-help",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-i18n", "name": "@opentiny/tiny-engine-plugin-i18n",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -0,0 +1,16 @@
Stack trace:
Frame Function Args
000FFFFCD30 00210062B0E (0021028A770, 00210275E51, 00000000058, 000FFFFB720)
000FFFFCD30 0021004846A (00210000000, 00200000000, 00000000000, 00000000001)
000FFFFCD30 002100484A2 (00000000000, 00000000000, 00000000058, 10100000004)
000FFFFCD30 0021006E496 (00210045323, 00210358950, 00000000000, 0000000000D)
000FFFFCD30 0021006E4A9 (00210045170, 0021023D7E0, 002100448F2, 000FFFFC920)
000FFFFCD30 00210070DE4 (00000000013, 00000000001, 000FFFFC920, 00210278640)
000FFFFCD30 0021005AB65 (000FFFF0000, 00000000000, 00000000000, 008FFFFFFFF)
000FFFFCD30 0021005B335 (00000000002, 00000001000, 00200000004, 00210358270)
000FFFFCD30 0021005B847 (002100DF73E, 00000000000, 00000000000, 00000000000)
000FFFFCD30 0021005BB86 (002102308C0, 000FFFFCDF0, FFFFFFFFFFFFFFD1, 00000000000)
000FFFFCD30 00210048C0C (00000000000, 00000000000, 00000000000, 00000000000)
000FFFFFFF0 00210047716 (00000000000, 00000000000, 00000000000, 00000000000)
000FFFFFFF0 002100477C4 (00000000000, 00000000000, 00000000000, 00000000000)
End of stack trace

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-materials", "name": "@opentiny/tiny-engine-plugin-materials",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-page", "name": "@opentiny/tiny-engine-plugin-page",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-robot", "name": "@opentiny/tiny-engine-plugin-robot",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-schema", "name": "@opentiny/tiny-engine-plugin-schema",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-script", "name": "@opentiny/tiny-engine-plugin-script",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-tree", "name": "@opentiny/tiny-engine-plugin-tree",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-plugin-tutorial", "name": "@opentiny/tiny-engine-plugin-tutorial",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-setting-design", "name": "@opentiny/tiny-engine-setting-design",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-setting-events", "name": "@opentiny/tiny-engine-setting-events",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-setting-props", "name": "@opentiny/tiny-engine-setting-props",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-setting-styles", "name": "@opentiny/tiny-engine-setting-styles",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-svgs", "name": "@opentiny/tiny-engine-svgs",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-theme-dark", "name": "@opentiny/tiny-engine-theme-dark",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build && rimraf dist/index.js" "build": "vite build && rimraf dist/index.js"
}, },

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-theme-light", "name": "@opentiny/tiny-engine-theme-light",
"version": "1.0.0", "version": "1.0.2",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build && rimraf dist/index.js" "build": "vite build && rimraf dist/index.js"
}, },

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-breadcrumb", "name": "@opentiny/tiny-engine-toolbar-breadcrumb",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-clean", "name": "@opentiny/tiny-engine-toolbar-clean",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -28,7 +28,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-collaboration", "name": "@opentiny/tiny-engine-toolbar-collaboration",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-fullscreen", "name": "@opentiny/tiny-engine-toolbar-fullscreen",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -28,7 +28,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-generate-vue", "name": "@opentiny/tiny-engine-toolbar-generate-vue",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -28,7 +28,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/, /^prettier.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/, /^prettier.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-lang", "name": "@opentiny/tiny-engine-toolbar-lang",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-layout", "name": "@opentiny/tiny-engine-toolbar-layout",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -28,7 +28,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-checkinout", "name": "@opentiny/tiny-engine-toolbar-checkinout",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -29,7 +29,7 @@ export default defineConfig({
}, },
rollupOptions: { rollupOptions: {
output: {}, output: {},
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-logo", "name": "@opentiny/tiny-engine-toolbar-logo",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-logout", "name": "@opentiny/tiny-engine-toolbar-logout",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-media", "name": "@opentiny/tiny-engine-toolbar-media",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-preview", "name": "@opentiny/tiny-engine-toolbar-preview",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -28,7 +28,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-redoundo", "name": "@opentiny/tiny-engine-toolbar-redoundo",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-refresh", "name": "@opentiny/tiny-engine-toolbar-refresh",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -28,7 +28,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-save", "name": "@opentiny/tiny-engine-toolbar-save",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -31,7 +31,7 @@ export default defineConfig({
output: { output: {
banner: 'import "./style.css"' banner: 'import "./style.css"'
}, },
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-toolbar-setting", "name": "@opentiny/tiny-engine-toolbar-setting",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"build": "vite build" "build": "vite build"
}, },

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -28,7 +28,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: ['vue', /@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: ['vue', /@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-utils", "name": "@opentiny/tiny-engine-utils",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"description": "", "description": "",
"main": "dist/index.js", "main": "dist/index.js",
"module": "dist/index.js", "module": "dist/index.js",

View File

@ -1,14 +1,14 @@
/** /**
* Copyright (c) 2023 - present TinyEngine Authors. * Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd. * Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
* *
* Use of this source code is governed by an MIT-style license. * Use of this source code is governed by an MIT-style license.
* *
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
* *
*/ */
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import path from 'path' import path from 'path'
@ -26,7 +26,7 @@ export default defineConfig({
formats: ['es'] formats: ['es']
}, },
rollupOptions: { rollupOptions: {
external: [/@opentiny\/lowcode.*/, /@opentiny\/vue.*/] external: [/@opentiny\/tiny-engine.*/, /@opentiny\/vue.*/]
} }
} }
}) })

View File

@ -1,6 +1,9 @@
{ {
"name": "@opentiny/tiny-engine-webcomponent-core", "name": "@opentiny/tiny-engine-webcomponent-core",
"version": "1.0.0", "version": "1.0.1",
"publishConfig": {
"access": "public"
},
"description": "webcomponent vue core", "description": "webcomponent vue core",
"author": "tinybuilder", "author": "tinybuilder",
"scripts": { "scripts": {