From a59ab462c4672d4ac8db85c1c5068bd7ecd1d2b0 Mon Sep 17 00:00:00 2001 From: "guokai.jgk" Date: Tue, 10 Nov 2020 19:59:02 +0800 Subject: [PATCH] v1.0.20-alpha.1 --- packages/datasource-engine/package.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) 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" },