Skip to content

Commit

Permalink
update deps added hreflang support on links
Browse files Browse the repository at this point in the history
  • Loading branch information
Fy- committed Oct 12, 2023
1 parent bf4e442 commit 7b8f99a
Show file tree
Hide file tree
Showing 8 changed files with 2,519 additions and 34 deletions.
12 changes: 10 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,21 @@ module.exports = {
},
},
parser: "vue-eslint-parser",
extends: ["prettier"],
extends: [
"plugin:vue/vue3-essential",
"@vue/prettier",
"@vue/eslint-config-prettier",
],
parserOptions: {
parser: "@typescript-eslint/parser",
},
rules: {
"vue/valid-v-for": "off",
"vue/html-indent": "off",
"vue/singleline-html-element-content-newline": 0,

camelcase: ["error", { properties: "never" }],
"no-console": ["warn", { allow: ["error"] }],
//"no-console": ["warn", { allow: ["error"] }],
"no-empty": ["error", { allowEmptyCatch: true }],
"prefer-const": [
"warn",
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
dist/
.venv/

# yarn
.rollup.*
Expand Down
40 changes: 24 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fy-/head",
"version": "0.0.35",
"version": "0.0.38",
"author": "Florian 'Fy' Gasquez <[email protected]>",
"main": "dist/fyhead.cjs.js",
"module": "dist/fyhead.es.js",
Expand All @@ -26,22 +26,30 @@
},
"homepage": "https://github.com/fyvue/head#readme",
"scripts": {
"build": "rm -rf dist/ && vite build --mode development && vue-tsc --declaration --emitDeclarationOnly --emitDeclarationOnly --outdir ./dist",
"lint:check": "eslint src/ --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore"
"build": "rm -rf dist/ && pnpm run lint:fix && vite build --mode development && vue-tsc --declaration --emitDeclarationOnly --emitDeclarationOnly --outdir ./dist",
"lint:check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},

"devDependencies": {
"@types/node": "^18.11.10",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/compiler-sfc": "^3.2.45",
"@vue/server-renderer": "^3.2.45",
"esbuild": "^0.15.16",
"rollup": "^3.5.1",
"rollup-plugin-copy": "^3.4.0",
"typescript": "^4.9.3",
"unplugin-vue": "^3.1.3",
"vite": "^3.2.4",
"vue": "^3.2.45",
"vue-tsc": "^1.0.9"
"@rushstack/eslint-patch": "^1.5.1",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/runtime-core": "^3.3.4",
"@vue/server-renderer": "^3.3.4",
"@vue/typescript": "^1.8.19",
"esbuild": "^0.19.4",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"prettier": "^3.0.3",
"rollup": "^4.0.2",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.1.6",
"unplugin-vue": "^4.3.5",
"vite": "^4.4.11",
"vue": "^3.3.4",
"vue-tsc": "^1.8.19"
}
}
Loading

0 comments on commit 7b8f99a

Please sign in to comment.