diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index eb993b8..f3f2e96 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -2,9 +2,9 @@ name: Lint Code Base on: push: - branches: [ main, develop ] + branches: [main, develop] pull_request: - branches: [ main, develop ] + branches: [main, develop] jobs: build: @@ -14,7 +14,7 @@ jobs: - name: Setup node version uses: actions/setup-node@v4 with: - node-version: '18' + node-version: "18" - uses: actions/checkout@v4 - run: npm install - - run: npm run lint-ci + - run: npm run lint-check diff --git a/CHANGELOG.md b/CHANGELOG.md index ad4139e..cbee172 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ +### Version 3.23.0 + +- Upgraded from node 18 to node 22 +- Replaced vue-cli with Vite +- Set up for docker watch + ### Version 3.22.0 - Official abilities rebalances : diff --git a/Dockerfile b/Dockerfile index 426457c..2ee5660 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,9 @@ -FROM node:18 +FROM node:22 RUN apt update && apt install -y\ git\ && apt clean WORKDIR /app/townsquare -COPY package*.json . -RUN npm rebuild -RUN npm clean-install -# npm rebuild avoids having misconfigurations if npm install has been run in the folder from windows before building the docker image COPY . . -CMD ["npm","run","serve"] +RUN npm rebuild && npm clean-install +EXPOSE 5173 8079 +CMD ["npm","run","dev"] diff --git a/.eslintrc.js b/eslint.config.js similarity index 67% rename from .eslintrc.js rename to eslint.config.js index 9f000da..ac98520 100644 --- a/.eslintrc.js +++ b/eslint.config.js @@ -2,10 +2,16 @@ module.exports = { root: true, env: { node: true, + es2022: true, + browser: true, }, - extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"], + extends: [ + "plugin:vue/essential", + "eslint:recommended", + "@vue/prettier" + ], parserOptions: { - ecmaVersion: 2020, + ecmaVersion: 2022, }, rules: { "no-console": process.env.NODE_ENV === "production" ? 1 : 0, diff --git a/public/index.html b/index.html similarity index 59% rename from public/index.html rename to index.html index 07b015d..cc57235 100644 --- a/public/index.html +++ b/index.html @@ -8,22 +8,22 @@