refactor: for test

This commit is contained in:
xiaojunnuo
2023-05-09 09:49:42 +08:00
parent 003ea9310b
commit f358a0f226
54 changed files with 97 additions and 112 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@certd/plugin-cert",
"private": true,
"private": false,
"version": "0.3.0",
"main": "./src/index.ts",
"module": "./src/index.ts",
@@ -16,9 +16,9 @@
"preview": "vite preview"
},
"dependencies": {
"@certd/acme-client": "^0.3.0",
"@certd/acme-client": "workspace:^0.3.0",
"node-forge": "^0.10.0",
"@certd/pipeline": "^0.3.0"
"@certd/pipeline": "workspace:^0.3.0"
},
"devDependencies": {
"log4js": "^6.7.1",

View File

@@ -8,13 +8,13 @@ export default defineConfig({
name: "pipeline",
},
rollupOptions: {
external: ["vue", "lodash-es", "dayjs", "@fast-crud/fast-crud"],
external: ["vue", "lodash", "dayjs", "@fast-crud/fast-crud"],
output: {
// Provide global variables to use in the UMD build
// for externalized deps
globals: {
vue: "Vue",
"lodash-es": "_",
"lodash": "_",
dayjs: "dayjs",
"@fast-crud/fast-crud": "FastCrud",
},