Skip to content

Commit

Permalink
update deps, move draft routes, repair xml for xls style, add xml route
Browse files Browse the repository at this point in the history
  • Loading branch information
ewilan-riviere committed Oct 4, 2023
1 parent b02c857 commit 2bfd144
Show file tree
Hide file tree
Showing 20 changed files with 629 additions and 856 deletions.
8 changes: 0 additions & 8 deletions .eslintrc

This file was deleted.

4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ stages:
- deploy

variables:
NODE_VERSION: "18.17.0"
NODE_VERSION: 18.17.0

deploy-job:
stage: deploy
image: alpine:latest
before_script:
- "command -v ssh-agent >/dev/null || ( apk add --update openssh )"
- 'command -v ssh-agent >/dev/null || ( apk add --update openssh )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
},
"eslint.validate": ["javascript", "js", "typescript"],
"typescript.tsdk": "node_modules/typescript/lib",
"dotenv.enableAutocloaking": false
"dotenv.enableAutocloaking": false,
"eslint.experimental.useFlatConfig": true
}
15 changes: 15 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// eslint.config.js
import antfu from '@antfu/eslint-config'

export default antfu({
markdown: false,
ignores: [
'./.github/**/*',
'./.github/**/*.md',
'./.vscode/**/*',
],
rules: {
'no-console': 'warn',
'node/prefer-global/process': 'off',
},
})
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,30 @@
"colorthief": "^2.4.0",
"consola": "^3.2.3",
"dotenv": "^16.3.1",
"fast-xml-parser": "^4.2.7",
"h3": "^1.8.0",
"jsonwebtoken": "^9.0.1",
"listhen": "^1.4.0",
"fast-xml-parser": "^4.3.2",
"h3": "^1.8.2",
"jsonwebtoken": "^9.0.2",
"listhen": "^1.5.5",
"node-cron": "^3.0.2",
"ofetch": "^1.3.3",
"sanitize-html": "^2.11.0",
"sqlite3": "^5.1.6",
"tsx": "^3.12.7",
"tsx": "^3.13.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.41.0",
"@antfu/eslint-config": "1.0.0-beta.18",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.5.6",
"@types/sanitize-html": "^2.9.0",
"@vitest/coverage-v8": "^0.34.3",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.8.2",
"@types/sanitize-html": "^2.9.1",
"@vitest/coverage-v8": "^0.34.6",
"chalk": "^5.3.0",
"eslint": "^8.47.0",
"eslint": "^8.50.0",
"esno": "^0.17.0",
"fast-glob": "^3.3.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
"vitest": "^0.34.6"
}
}
Loading

0 comments on commit 2bfd144

Please sign in to comment.