2 Star 0 Fork 0

mirrors_bpmn-io/json-schema-validator

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
rollup.config.js 565 Bytes
Copy Edit Raw Blame History
import json from '@rollup/plugin-json';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import pkg from './package.json';
function pgl(plugins=[]) {
return [
json(),
nodeResolve(),
commonjs(),
...plugins
];
}
const srcEntry = pkg.source;
export default [
{
input: srcEntry,
output: [
{ file: pkg.main, format: 'cjs' },
{ file: pkg.module, format: 'es' }
],
external: [
'min-dash',
'ajv',
'ajv-errors'
],
plugins: pgl()
}
];
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_bpmn-io/json-schema-validator.git
git@gitee.com:mirrors_bpmn-io/json-schema-validator.git
mirrors_bpmn-io
json-schema-validator
json-schema-validator
main

Search

0d507c66 1850385 C8b1a773 1850385