Skip to content

Commit

Permalink
v0.1.52
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Nov 24, 2023
1 parent 6becee1 commit afc5277
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions packages/create-dojo/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,6 @@ dist

# IntelliJ based IDEs
.idea

# bin dir
bin
6 changes: 4 additions & 2 deletions packages/create-dojo/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@dojoengine/create-dojo",
"version": "0.1.51",
"version": "0.1.52",
"description": "Scaffold Dojo project from examples",
"module": "index.ts",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bin": "./dist/index.js",
"bin": {
"create-dojo": "./bin/index.js"
},
"scripts": {
"build": "tsup --dts-resolve"
},
Expand Down
1 change: 1 addition & 0 deletions packages/create-dojo/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ export default defineConfig({
...tsupConfig,
minify: false,
splitting: false,
outDir: "./bin"
});

0 comments on commit afc5277

Please sign in to comment.