Skip to content

Commit

Permalink
Merge branch 'release/1.0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Sep 25, 2024
2 parents 45bc8da + b48935f commit cf78397
Show file tree
Hide file tree
Showing 7 changed files with 1,981 additions and 1,427 deletions.
8 changes: 4 additions & 4 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
>= 0.5%
last 2 major versions
not dead
Chrome >= 60
Firefox >= 60
Chrome >= 90
Firefox >= 91
Firefox ESR
iOS >= 12
Safari >= 12
iOS >= 15
Safari >= 15
not Explorer <= 11
3,329 changes: 1,934 additions & 1,395 deletions package-lock.json

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@brdgm/welcome-to-the-moon-solo-helper",
"version": "1.0.6",
"version": "1.0.7",
"private": true,
"description": "Welcome to the Moon Solo Helper",
"appDeployName": "welcome-to-the-moon",
Expand All @@ -16,43 +16,43 @@
"generate-pwa-assets": "pwa-assets-generator"
},
"dependencies": {
"@brdgm/brdgm-commons": "^1.6.7",
"@brdgm/brdgm-commons": "^1.6.9",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"core-js": "^3.37.1",
"core-js": "^3.38.1",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"vue": "^3.4.30",
"vue-i18n": "^9.13.1",
"vue-router": "^4.4.0"
"pinia": "^2.2.2",
"pinia-plugin-persistedstate": "^4.0.2",
"vue": "^3.5.8",
"vue-i18n": "^10.0.3",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@types/bootstrap": "^5.2.10",
"@types/chai": "^4.3.16",
"@types/chai": "^4.3.19",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.5",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/coverage-istanbul": "^1.6.0",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-istanbul": "^2.1.1",
"@vue/eslint-config-typescript": "^13.0.0",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"jsdom": "^24.1.0",
"nodemon": "^3.1.4",
"sass": "^1.77.6",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.28.0",
"jsdom": "^25.0.1",
"nodemon": "^3.1.7",
"sass": "~1.78.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-pwa": "^0.20.0",
"vitest": "^1.6.0"
"typescript": "~5.5.4",
"vite": "^5.4.7",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.1"
}
}
File renamed without changes.
3 changes: 3 additions & 0 deletions src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
"astronaut": "Raumanzug",
"planning": "Planung"
},
"notfound": {
"title": "Nicht Gefunden"
},
"action": {
"playGame": "Spielen",
"startGame": "Spiel starten",
Expand Down
3 changes: 3 additions & 0 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
"astronaut": "astronaut",
"planning": "planning"
},
"notfound": {
"title": "Not Found"
},
"action": {
"playGame": "Play Game",
"startGame": "Start Game",
Expand Down
9 changes: 9 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ import { VitePWA } from 'vite-plugin-pwa'
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
import path from 'path'
import { description, appDeployName } from './package.json'
import legacy from '@vitejs/plugin-legacy'

// https://vitejs.dev/config/
export default defineConfig({
base: `/${appDeployName}/`,
build: {
chunkSizeWarningLimit: 5242880
},
plugins: [
vue(),
VitePWA({
Expand Down Expand Up @@ -56,6 +60,11 @@ export default defineConfig({
VueI18nPlugin({
include: [path.resolve(__dirname, './src/locales/**')],
strictMessage: false
}),
// support older browsers
legacy({
modernTargets: 'iOS >= 15, Safari >= 15',
modernPolyfills: true
})
],
resolve: {
Expand Down

0 comments on commit cf78397

Please sign in to comment.