@dojoengine/create-dojo
Advanced tools
Comparing version 1.0.0-alpha.0 to 1.0.0-alpha.1
{ | ||
"name": "@dojoengine/create-dojo", | ||
"version": "1.0.0-alpha.0", | ||
"version": "1.0.0-alpha.1", | ||
"description": "Scaffold Dojo project from examples", | ||
@@ -27,3 +27,3 @@ "module": "index.ts", | ||
}, | ||
"gitHead": "576548dc6876db34f5c8aeb7e060d20b72cc6186" | ||
"gitHead": "d5965d4e27bc1e9f63280e426581060b62a2c66c" | ||
} |
@@ -1,9 +0,9 @@ | ||
import { defineConfig } from "tsup"; | ||
import { defineConfig, Options } from "tsup"; | ||
import { tsupConfig } from "../../tsup.config"; | ||
export default defineConfig({ | ||
...tsupConfig, | ||
minify: false, | ||
splitting: false, | ||
outDir: "./bin", | ||
...(tsupConfig as Options), | ||
minify: false, | ||
splitting: false, | ||
outDir: "./bin", | ||
}); |
24100