Skip to content

Commit

Permalink
Fix/create vuestic exec path (#2942)
Browse files Browse the repository at this point in the history
* fix(create-vuestic): made executable

* bump(create-vuestic): 0.0.2

* fix(create-vuestic): bin path
  • Loading branch information
m0ksem authored Feb 9, 2023
1 parent 820f181 commit ad44f4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/create-vuestic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
"description": "Easy way to create new vuestic-ui app",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx ./src/index.ts",
"build": "rm -rf dist && tsup src/ --format esm",
"prepublishOnly": "npm run build"
},
"bin": {
"create-vuestic": "./dist/index.mjs"
"create-vuestic": "./dist/index.js"
},
"dependencies": {
"chalk": "^5.2.0",
Expand Down
1 change: 1 addition & 0 deletions packages/create-vuestic/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/env node
import chalk from "chalk"
import { logo, primaryColor } from "./arts"
import { onError } from './on-error'
Expand Down

0 comments on commit ad44f4d

Please sign in to comment.