diff --git a/packages/datasource-engine/package.json b/packages/datasource-engine/package.json index 9c3d3e08a..fd033e8b0 100644 --- a/packages/datasource-engine/package.json +++ b/packages/datasource-engine/package.json @@ -1,23 +1,22 @@ { "name": "@ali/lowcode-datasource-engine", - "version": "1.0.19", + "version": "1.0.20-alpha.1", "description": "DataSource Engine for lowcode", "main": "lib/index.js", "module": "es/index.js", - "typings": "dist/index.d.ts", "files": [ - "dist", "src", - "interpret*", - "runtime*", - "lib" + "lib", + "es" ], "scripts": { - "build": "rm -rf dist && tsc --outDir ./dist --module esnext", + "clean": "rm -rf es lib", + "build": "npm run clean && tsc && tsc --outDir ./lib --module commonjs ", "test": "ava", "prepublishOnly": "npm run build" }, "dependencies": { + "@ali/lowcode-datasource-types": "^1.0.1", "@ali/lowcode-types": "^1.0.17", "typescript": "^3.9.7" },