forked from nuxt/modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: cleaup repository * enable corepack before node setup * checkout * update readme
- Loading branch information
Showing
9 changed files
with
1,184 additions
and
8,920 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,5 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"@nuxtjs/eslint-config-typescript", | ||
"plugin:nuxt/recommended" | ||
], | ||
"rules": { | ||
"no-console": "off", | ||
"import/no-named-as-default": "off", | ||
// handled by Volar | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"vue/multi-word-component-names": "off", | ||
// vue 3, TODO: upgrade eslint-plugin-vue | ||
"vue/no-v-for-template-key": "off" | ||
} | ||
"@nuxt/eslint-config" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,19 +7,17 @@ | |
"modules.json" | ||
], | ||
"scripts": { | ||
"build": "yarn cli build", | ||
"build": "pnpm cli build", | ||
"cli": "jiti ./lib/cli", | ||
"dev": "yarn website:dev", | ||
"prepare": "nuxi prepare website", | ||
"website:build": "yarn build && nuxi build website", | ||
"website:dev": "yarn build && nuxi dev website", | ||
"website:build": "pnpm build && nuxi build website", | ||
"website:dev": "pnpm build && nuxi dev website", | ||
"lint": "eslint --ext .vue,.ts .", | ||
"release": "yarn cli version && npm publish", | ||
"sync": "yarn cli sync", | ||
"test": "yarn lint && yarn sync" | ||
"release": "pnpm cli version && npm publish", | ||
"sync": "pnpm cli sync", | ||
"test": "pnpm lint && pnpm sync" | ||
}, | ||
"devDependencies": { | ||
"@nuxtjs/eslint-config-typescript": "^11.0.0", | ||
"@nuxt/eslint-config": "^0.1.1", | ||
"@types/js-yaml": "^4.0.5", | ||
"@types/node": "^18.8.5", | ||
"defu": "^6.1.0", | ||
|
@@ -29,11 +27,8 @@ | |
"hasha": "^5.2.2", | ||
"jiti": "^1.16.0", | ||
"js-yaml": "^4.1.0", | ||
"nuxt": "^3.0.0-rc.11", | ||
"ohmyfetch": "^0.4.19", | ||
"p-limit": "^4.0.0", | ||
"typescript": "^4.8.4", | ||
"ufo": "^1.0.0" | ||
"typescript": "^4.8.4" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.