Skip to content

Commit b329925

Browse files
committed
chore: add generated
1 parent 492d2e5 commit b329925

19 files changed

+1149
-40
lines changed

core/package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,15 @@
3030
"mustache": "^4.2.0"
3131
},
3232
"devDependencies": {
33-
"@rushstack/eslint-patch": "^1.3.3",
3433
"@tsconfig/node18": "^18.2.2",
3534
"@types/jsdom": "^21.1.3",
3635
"@types/mustache": "^4.2.3",
3736
"@types/node": "^18.17.17",
3837
"@vitejs/plugin-vue": "^4.3.4",
39-
"@vue/eslint-config-prettier": "^8.0.0",
40-
"@vue/eslint-config-typescript": "^12.0.0",
4138
"@vue/test-utils": "^2.4.1",
4239
"@vue/tsconfig": "^0.4.0",
43-
"eslint": "^8.49.0",
44-
"eslint-plugin-vue": "^9.17.0",
4540
"jsdom": "^22.1.0",
4641
"npm-run-all2": "^6.0.6",
47-
"prettier": "^3.0.3",
4842
"typescript": "~5.2.0",
4943
"vite": "^4.4.9",
5044
"vite-plugin-dts": "^3.6.0",

generated/build/ant.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import type { App } from 'vue'
2+
3+
export async function setup(app: App) {
4+
// imports
5+
await import('ant-design-vue/dist/antd.dark.css')
6+
7+
// uses
8+
let module
9+
module = await import('ant-design-vue')
10+
app.use(module)
11+
12+
// register cron component
13+
module = await import('@vue-js-cron/ant')
14+
app.component('cron-editor', module['CronAnt'])
15+
}

generated/build/element-plus.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import type { App } from 'vue'
2+
3+
export async function setup(app: App) {
4+
// imports
5+
await import('element-plus/dist/index.css')
6+
7+
// uses
8+
let module
9+
module = await import('element-plus')
10+
app.use(module)
11+
12+
// register cron component
13+
module = await import('@vue-js-cron/element-plus')
14+
app.component('cron-editor', module['CronElement'])
15+
}

generated/build/light.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import type { App } from 'vue'
2+
3+
export async function setup(app: App) {
4+
// imports
5+
6+
// uses
7+
let module
8+
9+
// register cron component
10+
module = await import('@vue-js-cron/light')
11+
app.component('cron-editor', module['CronLight'])
12+
}

generated/build/quasar.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import type { App } from 'vue'
2+
3+
export async function setup(app: App) {
4+
// imports
5+
await import('quasar/src/css/index.sass')
6+
await import('@quasar/extras/material-icons/material-icons.css')
7+
8+
// uses
9+
let module
10+
module = await import('quasar')
11+
app.use(module)
12+
13+
// register cron component
14+
module = await import('@vue-js-cron/quasar')
15+
app.component('cron-editor', module['CronQuasar'])
16+
}

generated/build/vuetify.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { App } from 'vue'
2+
3+
export async function setup(app: App) {
4+
// imports
5+
await import('vuetify/styles')
6+
await import('@mdi/font/css/materialdesignicons.css')
7+
8+
// uses
9+
let module
10+
11+
// register cron component
12+
module = await import('@vue-js-cron/vuetify')
13+
app.component('cron-editor', module['CronVuetify'])
14+
}

0 commit comments

Comments
 (0)