-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: many minor corrections (#86)
* chore(deps): update all non-major dependencies * ci: change runs-on * refactor: nuxt cron --------- Co-authored-by: hywax <[email protected]>
- Loading branch information
1 parent
2374647
commit 428562e
Showing
18 changed files
with
10,648 additions
and
9,705 deletions.
There are no files selected for viewing
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 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 |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx --no -- commitlint --edit ${1} | ||
commitlint --edit ${1} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
lint-staged |
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,2 +1,2 @@ | ||
auto-install-peers=true | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false |
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 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
"name": "nuxt-cron", | ||
"type": "module", | ||
"version": "1.7.0", | ||
"packageManager": "[email protected]", | ||
"description": "A Nuxt module for cron jobs in your app.", | ||
"license": "MIT", | ||
"repository": { | ||
|
@@ -26,43 +27,42 @@ | |
"dev": "nuxi dev playground", | ||
"dev:build": "nuxi build playground", | ||
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground", | ||
"release": "yarn lint && yarn prepack && changelogen --release --push && npm publish", | ||
"release": "pnpm lint && pnpm prepack && changelogen --release --push && npm publish", | ||
"typecheck": "nuxi typecheck", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint . --fix", | ||
"test": "vitest run", | ||
"test:watch": "vitest watch", | ||
"docs:dev": "vitepress dev docs", | ||
"docs:build": "vitepress build docs", | ||
"docs:preview": "vitepress preview docs" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.13.2", | ||
"cron": "^3.1.7", | ||
"@nuxt/kit": "^3.15.0", | ||
"cron": "^3.3.1", | ||
"fast-glob": "^3.3.2" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.27.3", | ||
"@commitlint/cli": "^19.5.0", | ||
"@commitlint/config-conventional": "^19.5.0", | ||
"@commitlint/cli": "^19.6.1", | ||
"@commitlint/config-conventional": "^19.6.0", | ||
"@hywax/vitepress-yandex-metrika": "^0.4.0", | ||
"@nuxt/devtools": "^1.5.2", | ||
"@nuxt/eslint-config": "^0.5.7", | ||
"@nuxt/module-builder": "^0.8.4", | ||
"@nuxt/schema": "^3.13.2", | ||
"@nuxt/test-utils": "^3.14.2", | ||
"@types/node": "^20.16.10", | ||
"@nuxt/schema": "^3.15.0", | ||
"@types/node": "^20.17.10", | ||
"changelogen": "^0.5.7", | ||
"eslint": "^9.12.0", | ||
"husky": "^9.1.6", | ||
"lint-staged": "^15.2.10", | ||
"nuxt": "^3.13.2", | ||
"typescript": "^5.6.2", | ||
"vitepress": "^1.3.4", | ||
"vitest": "^2.1.2", | ||
"vue-tsc": "^2.1.6" | ||
"eslint": "^9.17.0", | ||
"husky": "^9.1.7", | ||
"lint-staged": "^15.3.0", | ||
"nuxt": "^3.15.0", | ||
"typescript": "^5.7.2", | ||
"vitepress": "^1.5.0", | ||
"vue-tsc": "^2.2.0" | ||
}, | ||
"lint-staged": { | ||
"*": "yarn lint:fix" | ||
"*": "pnpm lint:fix" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ export default defineNuxtConfig({ | |
future: { | ||
compatibilityVersion: 4, | ||
}, | ||
compatibilityDate: '2024-12-29', | ||
}) |
Oops, something went wrong.