@fdm-monster/client-next 0.0.21 → 0.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.html CHANGED
@@ -4,8 +4,8 @@
4
4
  <head>
5
5
  <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="anonymous">
6
6
  <link rel="preload" as="style" onload="this.rel='stylesheet'" href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap">
7
- <link rel="preload" as="font" type="font/eot" href="/assets/MaterialIcons-Regular-BjXOXp5c.eot" crossorigin="anonymous">
8
7
  <link rel="preload" as="font" type="font/woff2" href="/assets/MaterialIcons-Regular-DOtZ65Va.woff2" crossorigin="anonymous">
8
+ <link rel="preload" as="font" type="font/eot" href="/assets/MaterialIcons-Regular-BjXOXp5c.eot" crossorigin="anonymous">
9
9
  <link rel="preload" as="font" type="font/woff" href="/assets/MaterialIcons-Regular-FsbMSDLx.woff" crossorigin="anonymous">
10
10
  <link rel="preload" as="font" type="font/ttf" href="/assets/MaterialIcons-Regular-DEUTIz1o.ttf" crossorigin="anonymous">
11
11
 
@@ -13,8 +13,8 @@
13
13
  <link rel="icon" href="/favicon.ico" />
14
14
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
15
15
  <title>FDM Monster</title>
16
- <script type="module" crossorigin src="/assets/index-tOR9YF1n.js"></script>
17
- <link rel="stylesheet" crossorigin href="/assets/index-DEBy2iV3.css">
16
+ <script type="module" crossorigin src="/assets/index-Bj2_diIZ.js"></script>
17
+ <link rel="stylesheet" crossorigin href="/assets/index-Cnc8DDeR.css">
18
18
 
19
19
  <style id="vpss-style">
20
20
  #vpss {
@@ -127,7 +127,7 @@
127
127
  (function () {
128
128
  window.__VPSS__ = {
129
129
  renderedAt: new Date().getTime(),
130
- minDurationMs: 0,
130
+ minDurationMs: 1000,
131
131
  };
132
132
  })();
133
133
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fdm-monster/client-next",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/fdm-monster/fdm-monster-client-next.git"
@@ -17,10 +17,11 @@
17
17
  "preview": "vite preview",
18
18
  "lint": "eslint . --fix --ignore-path .gitignore",
19
19
  "test:unit": "vitest --environment jsdom",
20
+ "test:unit:update": "vitest --environment jsdom -u",
20
21
  "test:coverage": "vitest run --coverage --environment jsdom",
21
22
  "test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'"
22
23
  },
23
24
  "dependencies": {},
24
25
  "devDependencies": {},
25
- "packageManager": "yarn@4.9.1"
26
+ "packageManager": "yarn@4.12.0"
26
27
  }
package/vite.config.mts CHANGED
@@ -20,7 +20,7 @@ export default defineConfig({
20
20
  splashBg: 'rgb(40, 40, 40)',
21
21
  loaderType: 'dots',
22
22
  loaderBg: 'rgb(155, 5, 5)',
23
- minTime: 1000
23
+ minDurationMs: 1000
24
24
  }),
25
25
  AutoImport({
26
26
  imports: ['vue'],
@@ -35,7 +35,7 @@ export default defineConfig({
35
35
  dts: 'src/components.d.ts'
36
36
  }),
37
37
  Vue({
38
- template: { transformAssetUrls }
38
+ template: {transformAssetUrls}
39
39
  }),
40
40
  // https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme
41
41
  Vuetify({
@@ -93,11 +93,12 @@ export default defineConfig({
93
93
  },
94
94
  test: {
95
95
  globals: true,
96
- // globalSetup: ["./vitest/setup.ts"],
97
96
  setupFiles: ['./test/setup-axios-mock.ts'],
98
97
  environment: 'jsdom',
99
- deps: {
100
- inline: ['vuetify']
98
+ server: {
99
+ deps: {
100
+ inline: ['vuetify'],
101
+ },
101
102
  }
102
103
  },
103
104
  build: {