Skip to content

Commit

Permalink
feat: upgrade to 0.7.0 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
marthendalnunes authored Nov 27, 2023
1 parent 034ceaa commit 6b54639
Show file tree
Hide file tree
Showing 825 changed files with 5,011 additions and 47,725 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-await-in-loop": "off",
"unicorn/better-regex": "off",
"node/no-unpublished-import": "off",
"max-depth": "off",
"prettier/prettier": ["error"]
}
Expand Down
8 changes: 4 additions & 4 deletions bin/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import oclif from '@oclif/core'
import path from 'node:path'
import url from 'node:url'
// eslint-disable-next-line node/no-unpublished-import
import {register} from 'ts-node'
import { register } from 'ts-node'

// In dev mode -> use ts-node and dev plugins
process.env.NODE_ENV = 'development'
Expand All @@ -20,6 +20,6 @@ oclif.settings.debug = true

// Start the CLI
oclif
.run(process.argv.slice(2), import.meta.url)
.then(oclif.flush)
.catch(oclif.Errors.handle)
.run(process.argv.slice(2), import.meta.url)
.then(oclif.flush)
.catch(oclif.Errors.handle)
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-turbo-eth",
"version": "0.6.2",
"version": "0.7.0",
"description": "Create web3 apps in turbo mode.",
"author": "Vitor @marthendalnunes",
"license": "MIT",
Expand All @@ -18,7 +18,7 @@
],
"type": "module",
"bin": {
"turboeth-cli-alpha": "./bin/run.js"
"create-turbo-eth": "./bin/run.js"
},
"homepage": "https://github.com/turbo-eth/create-turbo-eth",
"exports": "./index.js",
Expand All @@ -41,7 +41,8 @@
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"validate-npm-package-name": "^5.0.0",
"zod": "^3.21.4"
"zod": "^3.21.4",
"template": "file:./template/base"
},
"packageManager": "[email protected]",
"devDependencies": {
Expand All @@ -67,8 +68,8 @@
"typescript": "^4.9.5"
},
"oclif": {
"bin": "turboeth-cli-alpha",
"dirname": "turboeth-cli-alpha",
"bin": "create-turbo-eth",
"dirname": "create-turbo-eth",
"commands": "./dist/commands",
"default": ".",
"plugins": [
Expand All @@ -93,8 +94,8 @@
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
"node": ">=18.0.0"
},
"bugs": "https://github.com/marthendalnunes/turboeth-cli-alpha/issues",
"bugs": "https://github.com/turbo-eth/create-turbo-eth/issues/new?assignees=&labels=&projects=&template=bug_report.yml",
"types": "dist/index.d.ts"
}
Loading

0 comments on commit 6b54639

Please sign in to comment.