Skip to content

Commit 6b54639

Browse files
feat: upgrade to 0.7.0 (#21)
1 parent 034ceaa commit 6b54639

825 files changed

Lines changed: 5011 additions & 47725 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"@typescript-eslint/explicit-module-boundary-types": "off",
1010
"no-await-in-loop": "off",
1111
"unicorn/better-regex": "off",
12+
"node/no-unpublished-import": "off",
1213
"max-depth": "off",
1314
"prettier/prettier": ["error"]
1415
}

bin/dev.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import oclif from '@oclif/core'
66
import path from 'node:path'
77
import url from 'node:url'
88
// eslint-disable-next-line node/no-unpublished-import
9-
import {register} from 'ts-node'
9+
import { register } from 'ts-node'
1010

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

2121
// Start the CLI
2222
oclif
23-
.run(process.argv.slice(2), import.meta.url)
24-
.then(oclif.flush)
25-
.catch(oclif.Errors.handle)
23+
.run(process.argv.slice(2), import.meta.url)
24+
.then(oclif.flush)
25+
.catch(oclif.Errors.handle)

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-turbo-eth",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"description": "Create web3 apps in turbo mode.",
55
"author": "Vitor @marthendalnunes",
66
"license": "MIT",
@@ -18,7 +18,7 @@
1818
],
1919
"type": "module",
2020
"bin": {
21-
"turboeth-cli-alpha": "./bin/run.js"
21+
"create-turbo-eth": "./bin/run.js"
2222
},
2323
"homepage": "https://github.com/turbo-eth/create-turbo-eth",
2424
"exports": "./index.js",
@@ -41,7 +41,8 @@
4141
"execa": "^7.1.1",
4242
"fs-extra": "^11.1.1",
4343
"validate-npm-package-name": "^5.0.0",
44-
"zod": "^3.21.4"
44+
"zod": "^3.21.4",
45+
"template": "file:./template/base"
4546
},
4647
"packageManager": "pnpm@7.1.8",
4748
"devDependencies": {
@@ -67,8 +68,8 @@
6768
"typescript": "^4.9.5"
6869
},
6970
"oclif": {
70-
"bin": "turboeth-cli-alpha",
71-
"dirname": "turboeth-cli-alpha",
71+
"bin": "create-turbo-eth",
72+
"dirname": "create-turbo-eth",
7273
"commands": "./dist/commands",
7374
"default": ".",
7475
"plugins": [
@@ -93,8 +94,8 @@
9394
"version": "oclif readme && git add README.md"
9495
},
9596
"engines": {
96-
"node": ">=12.0.0"
97+
"node": ">=18.0.0"
9798
},
98-
"bugs": "https://github.com/marthendalnunes/turboeth-cli-alpha/issues",
99+
"bugs": "https://github.com/turbo-eth/create-turbo-eth/issues/new?assignees=&labels=&projects=&template=bug_report.yml",
99100
"types": "dist/index.d.ts"
100101
}

0 commit comments

Comments
 (0)