mirror of
https://github.com/certd/certd.git
synced 2026-04-24 04:08:53 +08:00
refactor: ui edit cert
This commit is contained in:
@@ -2,9 +2,14 @@
|
||||
"name": "@certd/plugin-common",
|
||||
"version": "0.2.1",
|
||||
"description": "",
|
||||
"main": "src/index.js",
|
||||
"type": "module",
|
||||
"main": "./dist/index.cjs",
|
||||
"module": "./dist/fast-crud.es.js",
|
||||
"scripts": {
|
||||
"build": "rollup -c"
|
||||
},
|
||||
"dependencies": {
|
||||
"@certd/api": "^0.2.1",
|
||||
"kubernetes-client": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -15,7 +20,8 @@
|
||||
"eslint-plugin-import": "^2.22.1",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-promise": "^4.2.1",
|
||||
"mocha": "^8.2.1"
|
||||
"mocha": "^8.2.1",
|
||||
"rollup": "^3.2.3"
|
||||
},
|
||||
"author": "Greper",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
export default {
|
||||
input: 'src/index.js',
|
||||
output: [
|
||||
{
|
||||
file: 'dist/index.cjs',
|
||||
format: 'cjs'
|
||||
},
|
||||
{
|
||||
file: 'dist/index.es.js',
|
||||
format: 'es'
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user