-
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.
- Loading branch information
Showing
8 changed files
with
429 additions
and
356 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 |
---|---|---|
|
@@ -11,7 +11,6 @@ | |
"eslint.validate": [ | ||
"vue", | ||
"yaml", | ||
"html", | ||
"json", | ||
"jsonc", | ||
"json5", | ||
|
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 |
---|---|---|
|
@@ -12,8 +12,10 @@ | |
"Hubot", | ||
"iconify", | ||
"nuxt", | ||
"nuxtjs", | ||
"shiki", | ||
"unocss", | ||
"vercel", | ||
"vitesse", | ||
"vueuse", | ||
"weapp" | ||
|
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,10 +1,10 @@ | ||
// @ts-check | ||
|
||
import { defineESLintConfig } from '@ntnyq/eslint-config' | ||
import nuxt from './.nuxt/eslint.config.mjs' | ||
import withNuxt from './.nuxt/eslint.config.mjs' | ||
|
||
const configs = await defineESLintConfig({ | ||
svgo: true, | ||
}) | ||
|
||
export default nuxt(configs) | ||
export default withNuxt(configs) |
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 |
---|---|---|
|
@@ -3,9 +3,15 @@ | |
"type": "module", | ||
"version": "0.0.0", | ||
"private": true, | ||
"packageManager": "[email protected].0", | ||
"packageManager": "[email protected].1", | ||
"description": "ntnyq.com", | ||
"keywords": [], | ||
"author": { | ||
"name": "ntnyq", | ||
"email": "[email protected]", | ||
"url": "https://ntnyq.com" | ||
}, | ||
"repository": "ntnyq/ntnyq.com", | ||
"scripts": { | ||
"build": "nuxt build", | ||
"dev": "nuxt dev", | ||
|
@@ -15,13 +21,14 @@ | |
"postinstall": "nuxt prepare", | ||
"prepare": "husky", | ||
"preview": "nuxt preview", | ||
"release": "bumpp && pnpm publish", | ||
"release": "bumpp", | ||
"typecheck": "nuxt typecheck" | ||
}, | ||
"dependencies": { | ||
"@nuxt/content": "^3.1.0", | ||
"@nuxt/image": "^1.9.0", | ||
"@unocss/nuxt": "^65.4.3", | ||
"@vercel/analytics": "^1.4.1", | ||
"@vite-pwa/nuxt": "^0.10.6", | ||
"@vueuse/nuxt": "^12.5.0", | ||
"floating-vue": "^5.2.2", | ||
|
@@ -40,7 +47,7 @@ | |
"@nuxt/eslint": "^1.0.0", | ||
"@types/prompts": "^2.4.9", | ||
"@unocss/reset": "^65.4.3", | ||
"bumpp": "^10.0.1", | ||
"bumpp": "^10.0.2", | ||
"consola": "^3.4.0", | ||
"eslint": "^9.19.0", | ||
"husky": "^9.1.7", | ||
|
@@ -56,11 +63,14 @@ | |
}, | ||
"pnpm": { | ||
"onlyBuiltDependencies": [ | ||
"better-sqlite3" | ||
"better-sqlite3", | ||
"@parcel/watcher", | ||
"esbuild", | ||
"sharp" | ||
] | ||
}, | ||
"nano-staged": { | ||
"*.{js,ts,mjs,cjs,vue,html,svg,json,md,yml,yaml}": "eslint --fix", | ||
"*.{css,scss}": "prettier -uw" | ||
"*.{js,ts,mjs,cjs,vue,svg,json,md,yml,yaml}": "eslint --fix", | ||
"*.{css,scss,html}": "prettier -uw" | ||
} | ||
} |
Oops, something went wrong.