socketio / socket.io-admin-ui

Admin UI for Socket.IO
https://admin.socket.io
MIT License
346 stars 94 forks source link

docker image build failed #77

Open sercangoger opened 8 months ago

sercangoger commented 8 months ago

I want to convert the project into a docker image and run it, but I get the following error.

**47.41 Building: /usr/local/bin/node /app/node_modules/node-gyp/bin/node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library= 47.47 gyp info it worked if it ends with ok 47.47 gyp verb cli [ 47.47 gyp verb cli '/usr/local/bin/node', 47.47 gyp verb cli '/app/node_modules/node-gyp/bin/node-gyp.js', 47.47 gyp verb cli 'rebuild', 47.47 gyp verb cli '--verbose', 47.47 gyp verb cli '--libsass_ext=', 47.47 gyp verb cli '--libsass_cflags=', 47.47 gyp verb cli '--libsass_ldflags=', 47.47 gyp verb cli '--libsass_library=' 47.47 gyp verb cli ] 47.47 gyp info using node-gyp@3.8.0 47.47 gyp info using node@14.21.3 | linux | arm64 47.47 gyp verb command rebuild [] 47.47 gyp verb command clean [] 47.48 gyp verb clean removing "build" directory 47.48 gyp verb command configure [] 47.49 gyp verb check python checking for Python executable "python2" in the PATH 47.49 gyp verb which failed Error: not found: python2 47.49 gyp verb which failed at getNotFoundError (/app/node_modules/which/which.js:13:12) 47.49 gyp verb which failed at F (/app/node_modules/which/which.js:68:19) 47.49 gyp verb which failed at E (/app/node_modules/which/which.js:80:29) 47.49 gyp verb which failed at /app/node_modules/which/which.js:89:16 47.49 gyp verb which failed at /app/node_modules/isexe/index.js:42:5 47.49 gyp verb which failed at /app/node_modules/isexe/mode.js:8:5 47.49 gyp verb which failed at FSReqCallback.oncomplete (fs.js:192:21) 47.49 gyp verb which failed python2 Error: not found: python2 47.49 gyp verb which failed at getNotFoundError (/app/node_modules/which/which.js:13:12) 47.49 gyp verb which failed at F (/app/node_modules/which/which.js:68:19) 47.49 gyp verb which failed at E (/app/node_modules/which/which.js:80:29) 47.49 gyp verb which failed at /app/node_modules/which/which.js:89:16 47.49 gyp verb which failed at /app/node_modules/isexe/index.js:42:5 47.49 gyp verb which failed at /app/node_modules/isexe/mode.js:8:5 47.49 gyp verb which failed at FSReqCallback.oncomplete (fs.js:192:21) { 47.49 gyp verb which failed code: 'ENOENT' 47.49 gyp verb which failed } 47.49 gyp verb check python checking for Python executable "python" in the PATH 47.49 gyp verb which succeeded python /usr/bin/python 47.51 gyp ERR! configure error 47.51 gyp ERR! stack Error: Command failed: /usr/bin/python -c import sys; print "%s.%s.%s" % sys.version_info[:3]; 47.51 gyp ERR! stack File "", line 1 47.51 gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3]; 47.51 gyp ERR! stack ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 47.51 gyp ERR! stack SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)? 47.51 gyp ERR! stack 47.51 gyp ERR! stack at ChildProcess.exithandler (child_process.js:383:12) 47.51 gyp ERR! stack at ChildProcess.emit (events.js:400:28) 47.51 gyp ERR! stack at maybeClose (internal/child_process.js:1088:16) 47.51 gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:296:5) 47.51 gyp ERR! System Linux 6.5.11-linuxkit 47.51 gyp ERR! command "/usr/local/bin/node" "/app/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library=" 47.51 gyp ERR! cwd /app/node_modules/node-sass 47.51 gyp ERR! node -v v14.21.3 47.51 gyp ERR! node-gyp -v v3.8.0 47.51 gyp ERR! not ok 47.52 Build failed with error code: 1 48.02 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@~2.3.2 (node_modules/chokidar/node_modules/fsevents): 48.02 npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.3: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"arm64"}) 48.03 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.2.7 (node_modules/watchpack-chokidar2/node_modules/chokidar/node_modules/fsevents): 48.03 npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"arm64"}) 48.04 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.2.7 (node_modules/webpack-dev-server/node_modules/chokidar/node_modules/fsevents): 48.04 npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"arm64"}) 48.04 48.15 npm ERR! code ELIFECYCLE 48.15 npm ERR! errno 1 48.15 npm ERR! node-sass@4.14.1 postinstall: node scripts/build.js 48.15 npm ERR! Exit status 1 48.15 npm ERR! 48.15 npm ERR! Failed at the node-sass@4.14.1 postinstall script. 48.15 npm ERR! This is probably not a problem with npm. There is likely additional logging output above. 48.17 48.17 npm ERR! A complete log of this run can be found in: 48.17 npm ERR! /root/.npm/_logs/2024-01-02T11_17_46_603Z-debug.log

Dockerfile:10

8 | RUN npm install -g gyp 9 | RUN apk add g++ make py3-pip 10 | >>> RUN npm install 11 |
12 | # Bundle app source

ERROR: failed to solve: process "/bin/sh -c npm install" did not complete successfully: exit code: 1

View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/upuy4whk515yr6won5uj9fk0g**

sercangoger commented 8 months ago

dockerfile update code

** FROM node:15-alpine

WORKDIR /usr/src/app

COPY package.json .

RUN apk add --no-cache --virtual .gyp \ python \ make \ g++ \ && npm install \ && apk del .gyp RUN apk add python2

RUN npm install -g npm@10.2.5

RUN apk add --update python2 make g++ && rm -rf /var/cache/apk/* RUN npm install RUN npm install -g sass-migrator RUN sass-migrator division */.scss

RUN npm install -D rollup-plugin-sass-migrator sass-migrator

COPY . .

EXPOSE 3000

CMD npm run build **

kekekekekeshi commented 2 months ago

2024-06-20T08:06:56.396783543Z 2024-06-20T08:06:56.396825252Z > ui@0.5.1 build 2024-06-20T08:06:56.396827668Z > vue-cli-service build 2024-06-20T08:06:56.396829335Z 2024-06-20T08:06:56.785803877Z 2024-06-20T08:07:02.538518963Z ⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.538571838Z 2024-06-20T08:07:02.538574421Z Recommendation: math.div($gutter, 2) or calc($gutter / 2) 2024-06-20T08:07:02.538576088Z 2024-06-20T08:07:02.538578630Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.538580421Z 2024-06-20T08:07:02.538581880Z ╷ 2024-06-20T08:07:02.538583463Z 30 │ padding: $gutter / 2 2024-06-20T08:07:02.538585088Z │ ^^^^^^^^^^^ 2024-06-20T08:07:02.538586796Z ╵ 2024-06-20T08:07:02.538588255Z node_modules/vuetify/src/components/VGrid/_grid.sass 30:22 root stylesheet 2024-06-20T08:07:02.538589838Z 2024-06-20T08:07:02.539713838Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.539726130Z 2024-06-20T08:07:02.539738713Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.539740463Z 2024-06-20T08:07:02.539742005Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.539743588Z 2024-06-20T08:07:02.539747796Z ╷ 2024-06-20T08:07:02.539751171Z 33 │ margin: -$gutter / 2 2024-06-20T08:07:02.539753171Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.539755171Z ╵ 2024-06-20T08:07:02.539756838Z node_modules/vuetify/src/components/VGrid/_grid.sass 33:19 root stylesheet 2024-06-20T08:07:02.539758546Z 2024-06-20T08:07:02.540807713Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.540823255Z 2024-06-20T08:07:02.540825380Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.540827130Z 2024-06-20T08:07:02.540828588Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.540830130Z 2024-06-20T08:07:02.540831588Z ╷ 2024-06-20T08:07:02.540833213Z 36 │ margin: auto (-$gutter / 2) 2024-06-20T08:07:02.540834880Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.540836463Z ╵ 2024-06-20T08:07:02.540837921Z node_modules/vuetify/src/components/VGrid/_grid.sass 36:25 root stylesheet 2024-06-20T08:07:02.540839713Z 2024-06-20T08:07:02.542105421Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.542113796Z 2024-06-20T08:07:02.542115505Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.542117088Z 2024-06-20T08:07:02.542118588Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.542120463Z 2024-06-20T08:07:02.542121921Z ╷ 2024-06-20T08:07:02.542123505Z 40 │ margin-top: -$gutter / 2 2024-06-20T08:07:02.542125130Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.542126755Z ╵ 2024-06-20T08:07:02.542128255Z node_modules/vuetify/src/components/VGrid/_grid.sass 40:25 root stylesheet 2024-06-20T08:07:02.542130005Z 2024-06-20T08:07:02.543086255Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.543100213Z 2024-06-20T08:07:02.543102338Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.543104171Z 2024-06-20T08:07:02.543105713Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.543107255Z 2024-06-20T08:07:02.543108671Z ╷ 2024-06-20T08:07:02.543110421Z 43 │ margin-bottom: -$gutter / 2 2024-06-20T08:07:02.543112171Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.543113880Z ╵ 2024-06-20T08:07:02.543115463Z node_modules/vuetify/src/components/VGrid/_grid.sass 43:28 root stylesheet 2024-06-20T08:07:02.543117005Z 2024-06-20T08:07:02.547526671Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.547546338Z 2024-06-20T08:07:02.547548005Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.547549588Z 2024-06-20T08:07:02.547551171Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.547552713Z 2024-06-20T08:07:02.547554130Z ╷ 2024-06-20T08:07:02.547555796Z 17 │ margin: -$gutter / 2 2024-06-20T08:07:02.547557463Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.547559005Z ╵ 2024-06-20T08:07:02.547560505Z node_modules/vuetify/src/components/VGrid/_mixins.sass 17:11 make-row() 2024-06-20T08:07:02.547562046Z node_modules/vuetify/src/components/VGrid/VGrid.sass 15:3 root stylesheet 2024-06-20T08:07:02.547563630Z 2024-06-20T08:07:02.548606838Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.548614630Z 2024-06-20T08:07:02.548616421Z Recommendation: math.div($grid-gutter, 2) or calc($grid-gutter / 2) 2024-06-20T08:07:02.548618046Z 2024-06-20T08:07:02.548619505Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.548620963Z 2024-06-20T08:07:02.548622505Z ╷ 2024-06-20T08:07:02.548624130Z 18 │ margin-top: $grid-gutter / 2 2024-06-20T08:07:02.548625713Z │ ^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.548627380Z ╵ 2024-06-20T08:07:02.548645005Z node_modules/vuetify/src/components/VGrid/VGrid.sass 18:17 root stylesheet 2024-06-20T08:07:02.548647171Z 2024-06-20T08:07:02.549700713Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.549710713Z 2024-06-20T08:07:02.549712296Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:02.549713963Z 2024-06-20T08:07:02.549715671Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.549717630Z 2024-06-20T08:07:02.549719088Z ╷ 2024-06-20T08:07:02.549720713Z 21 │ margin-top: $form-grid-gutter / 2 2024-06-20T08:07:02.549722380Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.549724046Z ╵ 2024-06-20T08:07:02.549725505Z node_modules/vuetify/src/components/VGrid/VGrid.sass 21:19 root stylesheet 2024-06-20T08:07:02.549727046Z 2024-06-20T08:07:02.550667963Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.550678380Z 2024-06-20T08:07:02.550680213Z Recommendation: math.div(-$form-grid-gutter, 2) or calc(-1 $form-grid-gutter / 2) 2024-06-20T08:07:02.550681963Z 2024-06-20T08:07:02.550683505Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.550685046Z 2024-06-20T08:07:02.550686421Z ╷ 2024-06-20T08:07:02.550688171Z 24 │ margin: -$form-grid-gutter / 2 2024-06-20T08:07:02.550689838Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.550691421Z ╵ 2024-06-20T08:07:02.550692880Z node_modules/vuetify/src/components/VGrid/VGrid.sass 24:13 root stylesheet 2024-06-20T08:07:02.550694421Z 2024-06-20T08:07:02.552788255Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.552799880Z 2024-06-20T08:07:02.552801713Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:02.552803463Z 2024-06-20T08:07:02.552804963Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.552806546Z 2024-06-20T08:07:02.552808046Z ╷ 2024-06-20T08:07:02.552810046Z 28 │ padding: $form-grid-gutter / 2 2024-06-20T08:07:02.552816671Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.552818421Z ╵ 2024-06-20T08:07:02.552819921Z node_modules/vuetify/src/components/VGrid/VGrid.sass 28:16 root stylesheet 2024-06-20T08:07:02.552821588Z 2024-06-20T08:07:02.755855796Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:02.755889046Z 2024-06-20T08:07:02.775143880Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:02.775182880Z 2024-06-20T08:07:03.410036672Z ⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.410074213Z 2024-06-20T08:07:03.410076713Z Recommendation: math.div($switch-track-inset-height, 2) or calc($switch-track-inset-height / 2) 2024-06-20T08:07:03.410078630Z 2024-06-20T08:07:03.410080255Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.410082005Z 2024-06-20T08:07:03.410083463Z ╷ 2024-06-20T08:07:03.410085255Z 116 │ top: calc(50% - #{$switch-track-inset-height / 2}) 2024-06-20T08:07:03.410087005Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.410088630Z ╵ 2024-06-20T08:07:03.410090130Z node_modules/vuetify/src/components/VSwitch/VSwitch.sass 116:25 root stylesheet 2024-06-20T08:07:03.410092088Z 2024-06-20T08:07:03.421763713Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.421789588Z 2024-06-20T08:07:03.421792213Z Recommendation: math.div($size, 2.25) or calc($size / 2.25) 2024-06-20T08:07:03.421793963Z 2024-06-20T08:07:03.421795547Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.421797505Z 2024-06-20T08:07:03.421798922Z ╷ 2024-06-20T08:07:03.421800880Z 83 │ padding: 0 #{$size / 2.25}px 2024-06-20T08:07:03.421802547Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:03.421804213Z ╵ 2024-06-20T08:07:03.421805713Z node_modules/vuetify/src/components/VBtn/VBtn.sass 83:22 root stylesheet 2024-06-20T08:07:03.421816088Z 2024-06-20T08:07:03.427983255Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.428004047Z 2024-06-20T08:07:03.428006422Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:03.428008130Z 2024-06-20T08:07:03.428009672Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.428011547Z 2024-06-20T08:07:03.428013130Z ╷ 2024-06-20T08:07:03.428015047Z 219 │ bottom: -#{$size / 2}px 2024-06-20T08:07:03.428016755Z │ ^^^^^^^^^ 2024-06-20T08:07:03.428018338Z ╵ 2024-06-20T08:07:03.428019838Z node_modules/vuetify/src/components/VBtn/VBtn.sass 219:22 root stylesheet 2024-06-20T08:07:03.428021713Z 2024-06-20T08:07:03.428462422Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.428479338Z 2024-06-20T08:07:03.428481338Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:03.428482963Z 2024-06-20T08:07:03.428484463Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.428485922Z 2024-06-20T08:07:03.428487338Z ╷ 2024-06-20T08:07:03.428489422Z 222 │ top: -#{$size / 2}px 2024-06-20T08:07:03.428491755Z │ ^^^^^^^^^ 2024-06-20T08:07:03.428493297Z ╵ 2024-06-20T08:07:03.428494672Z node_modules/vuetify/src/components/VBtn/VBtn.sass 222:19 root stylesheet 2024-06-20T08:07:03.428496713Z 2024-06-20T08:07:03.944333422Z ⠸ Building for production...⠼ Building for production...⠴ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.944374172Z 2024-06-20T08:07:03.944377339Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.944379464Z 2024-06-20T08:07:03.944383964Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.944388630Z 2024-06-20T08:07:03.944390255Z ╷ 2024-06-20T08:07:03.944391880Z 37 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.944401505Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.944403964Z ╵ 2024-06-20T08:07:03.944405505Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 37:22 @content 2024-06-20T08:07:03.944407255Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:03.944408797Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 36:7 root stylesheet 2024-06-20T08:07:03.944410380Z 2024-06-20T08:07:03.947787214Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.947807880Z 2024-06-20T08:07:03.947810214Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.947811964Z 2024-06-20T08:07:03.947813422Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.947814964Z 2024-06-20T08:07:03.947816422Z ╷ 2024-06-20T08:07:03.947818464Z 40 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.947820130Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.947821839Z ╵ 2024-06-20T08:07:03.947823339Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 40:23 @content 2024-06-20T08:07:03.947824964Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:03.947826547Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 39:7 root stylesheet 2024-06-20T08:07:03.947829089Z 2024-06-20T08:07:03.950983839Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.950996505Z 2024-06-20T08:07:03.950998130Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.950999714Z 2024-06-20T08:07:03.951001172Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.951002964Z 2024-06-20T08:07:03.951004380Z ╷ 2024-06-20T08:07:03.951006130Z 51 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.951007714Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.951009339Z ╵ 2024-06-20T08:07:03.951011089Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 51:23 @content 2024-06-20T08:07:03.951012672Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:03.951021922Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 50:7 root stylesheet 2024-06-20T08:07:03.951024797Z 2024-06-20T08:07:03.951991547Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.952011755Z 2024-06-20T08:07:03.952014255Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.952016172Z 2024-06-20T08:07:03.952017714Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.952019255Z 2024-06-20T08:07:03.952020714Z ╷ 2024-06-20T08:07:03.952022464Z 54 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.952024172Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.952025755Z ╵ 2024-06-20T08:07:03.952027214Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 54:22 @content 2024-06-20T08:07:03.952028797Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:03.952030339Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 53:7 root stylesheet 2024-06-20T08:07:03.952031880Z 2024-06-20T08:07:07.165211924Z ⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:07.165262674Z 2024-06-20T08:07:07.165265382Z Recommendation: math.div(map-get($size, "height"), 2) or calc(map-get($size, "height") / 2) 2024-06-20T08:07:07.165267382Z 2024-06-20T08:07:07.165268924Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:07.165270549Z 2024-06-20T08:07:07.165272007Z ╷ 2024-06-20T08:07:07.165273549Z 202 │ border-radius: #{map-get($size, 'height') / 2}px 2024-06-20T08:07:07.165275257Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:07.165276924Z ╵ 2024-06-20T08:07:07.165289507Z node_modules/vuetify/src/components/VChip/VChip.sass 202:24 root stylesheet 2024-06-20T08:07:07.165291174Z 2024-06-20T08:07:08.573490841Z ⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.573529216Z 2024-06-20T08:07:08.573532008Z Recommendation: math.div($dot-size, 2) or calc($dot-size / 2) 2024-06-20T08:07:08.573534008Z 2024-06-20T08:07:08.573535591Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.573537174Z 2024-06-20T08:07:08.573538591Z ╷ 2024-06-20T08:07:08.573541716Z 3 │ left: calc(50% - #{$dot-size / 2}) 2024-06-20T08:07:08.573543341Z │ ^^^^^^^^^^^^^ 2024-06-20T08:07:08.573544966Z ╵ 2024-06-20T08:07:08.573546841Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 3:22 timeline-dots() 2024-06-20T08:07:08.573548466Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:08.573550008Z 2024-06-20T08:07:08.575036216Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.575079591Z 2024-06-20T08:07:08.575088341Z Recommendation: math.div($dot-size - $inner-dot-size, 2) or calc(($dot-size - $inner-dot-size) / 2) 2024-06-20T08:07:08.575090633Z 2024-06-20T08:07:08.575092174Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.575094258Z 2024-06-20T08:07:08.575095716Z ╷ 2024-06-20T08:07:08.575097466Z 8 │ margin: ($dot-size - $inner-dot-size) / 2 2024-06-20T08:07:08.575099341Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.575100924Z ╵ 2024-06-20T08:07:08.575102466Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 8:13 timeline-dots() 2024-06-20T08:07:08.575104258Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:08.575114758Z 2024-06-20T08:07:08.581004716Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.581032091Z 2024-06-20T08:07:08.581034466Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:08.581036174Z 2024-06-20T08:07:08.581037716Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.581039258Z 2024-06-20T08:07:08.581040633Z ╷ 2024-06-20T08:07:08.581042758Z 74 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:08.581044549Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.581046174Z ╵ 2024-06-20T08:07:08.581047633Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 74:51 root stylesheet 2024-06-20T08:07:08.581049216Z 2024-06-20T08:07:08.583712508Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.583734716Z 2024-06-20T08:07:08.583737383Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:08.583739133Z 2024-06-20T08:07:08.583740674Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.583742216Z 2024-06-20T08:07:08.583743633Z ╷ 2024-06-20T08:07:08.583746091Z 83 │ max-width: calc(#{100% - $timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:08.583747966Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.583749674Z ╵ 2024-06-20T08:07:08.583751299Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 83:64 root stylesheet 2024-06-20T08:07:08.583752883Z 2024-06-20T08:07:08.585146341Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.585165633Z 2024-06-20T08:07:08.585167674Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:08.585169341Z 2024-06-20T08:07:08.585171133Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.585172841Z 2024-06-20T08:07:08.585174216Z ╷ 2024-06-20T08:07:08.585176008Z 89 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:08.585185799Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.585187591Z ╵ 2024-06-20T08:07:08.585189049Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 89:57 root stylesheet 2024-06-20T08:07:08.585190674Z 2024-06-20T08:07:08.594722091Z Warning: 6 repetitive deprecation warnings omitted. 2024-06-20T08:07:08.594733841Z 2024-06-20T08:07:08.951172883Z ⠦ Building for production...⠧ Building for production...⠇ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.951208591Z 2024-06-20T08:07:08.951211924Z Recommendation: math.div(-$slider-thumb-size, 2) or calc(-1 $slider-thumb-size / 2) 2024-06-20T08:07:08.951213799Z 2024-06-20T08:07:08.951215341Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.951216883Z 2024-06-20T08:07:08.951223258Z ╷ 2024-06-20T08:07:08.951224799Z 50 │ left: -$slider-thumb-size / 2 2024-06-20T08:07:08.951226591Z │ ^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.951228341Z ╵ 2024-06-20T08:07:08.951230091Z node_modules/vuetify/src/components/VSlider/VSlider.sass 50:9 root stylesheet 2024-06-20T08:07:08.951231799Z 2024-06-20T08:07:08.952595216Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.952640383Z 2024-06-20T08:07:08.952643633Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:08.952645466Z 2024-06-20T08:07:08.952646924Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.952648799Z 2024-06-20T08:07:08.952650216Z ╷ 2024-06-20T08:07:08.952657758Z 67 │ left: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:08.952659549Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.952661633Z ╵ 2024-06-20T08:07:08.952663174Z node_modules/vuetify/src/components/VSlider/VSlider.sass 67:11 root stylesheet 2024-06-20T08:07:08.952664716Z 2024-06-20T08:07:08.953107383Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.953121799Z 2024-06-20T08:07:08.953124133Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:08.953126133Z 2024-06-20T08:07:08.953127633Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.953129174Z 2024-06-20T08:07:08.953130591Z ╷ 2024-06-20T08:07:08.953132299Z 68 │ top: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:08.953134049Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.953135633Z ╵ 2024-06-20T08:07:08.953137133Z node_modules/vuetify/src/components/VSlider/VSlider.sass 68:10 root stylesheet 2024-06-20T08:07:08.953138674Z 2024-06-20T08:07:08.959960091Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.959974841Z 2024-06-20T08:07:08.959976716Z Recommendation: math.div(-($slider-thumb-size - 4), 2) or calc(-1 ($slider-thumb-size - 4) / 2) 2024-06-20T08:07:08.959978549Z 2024-06-20T08:07:08.959980091Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.959981633Z 2024-06-20T08:07:08.959983049Z ╷ 2024-06-20T08:07:08.959985133Z 254 │ left: -($slider-thumb-size - 4) / 2 2024-06-20T08:07:08.959986799Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.959988383Z ╵ 2024-06-20T08:07:08.959989883Z node_modules/vuetify/src/components/VSlider/VSlider.sass 254:11 root stylesheet 2024-06-20T08:07:08.959991466Z 2024-06-20T08:07:09.759257883Z ⠏ Building for production...⠋ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:09.759290341Z 2024-06-20T08:07:09.759294925Z Recommendation: math.div($progress-linear-stream-border-width, 2) or calc($progress-linear-stream-border-width / 2) 2024-06-20T08:07:09.759297216Z 2024-06-20T08:07:09.759299841Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:09.759303883Z 2024-06-20T08:07:09.759305383Z ╷ 2024-06-20T08:07:09.759307091Z 113 │ top: calc(50% - #{$progress-linear-stream-border-width / 2}) 2024-06-20T08:07:09.759315550Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:09.759317341Z ╵ 2024-06-20T08:07:09.759318841Z node_modules/vuetify/src/components/VProgressLinear/VProgressLinear.sass 113:21 root stylesheet 2024-06-20T08:07:09.759320883Z 2024-06-20T08:07:11.022926342Z ⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.022969259Z 2024-06-20T08:07:11.022974509Z Recommendation: math.div(-$banner-y-padding, 2) or calc(-1 $banner-y-padding / 2) 2024-06-20T08:07:11.022976300Z 2024-06-20T08:07:11.022977884Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.022979509Z 2024-06-20T08:07:11.022981050Z ╷ 2024-06-20T08:07:11.022982717Z 26 │ margin-bottom: -$banner-y-padding / 2 2024-06-20T08:07:11.022984342Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.022986092Z ╵ 2024-06-20T08:07:11.022987634Z node_modules/vuetify/src/components/VBanner/VBanner.sass 26:18 root stylesheet 2024-06-20T08:07:11.022989467Z 2024-06-20T08:07:11.025501842Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.025521717Z 2024-06-20T08:07:11.025527592Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:11.025529384Z 2024-06-20T08:07:11.025530884Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.025532384Z 2024-06-20T08:07:11.025533842Z ╷ 2024-06-20T08:07:11.025535800Z 85 │ padding-top: $banner-y-padding / 2 2024-06-20T08:07:11.025537425Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.025539050Z ╵ 2024-06-20T08:07:11.025540550Z node_modules/vuetify/src/components/VBanner/VBanner.sass 85:18 root stylesheet 2024-06-20T08:07:11.025542050Z 2024-06-20T08:07:11.025781092Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.025796967Z 2024-06-20T08:07:11.025798967Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:11.025800675Z 2024-06-20T08:07:11.025802175Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.025803884Z 2024-06-20T08:07:11.025805342Z ╷ 2024-06-20T08:07:11.025807050Z 86 │ padding-bottom: $banner-y-padding / 2 2024-06-20T08:07:11.025808759Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.025810425Z ╵ 2024-06-20T08:07:11.025811925Z node_modules/vuetify/src/components/VBanner/VBanner.sass 86:21 root stylesheet 2024-06-20T08:07:11.025813509Z 2024-06-20T08:07:11.092691967Z ⠇ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.092728342Z 2024-06-20T08:07:11.092730967Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:11.092732675Z 2024-06-20T08:07:11.092734175Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.092735759Z 2024-06-20T08:07:11.092737175Z ╷ 2024-06-20T08:07:11.092738884Z 141 │ padding-top: $alert-padding / 2 2024-06-20T08:07:11.092740467Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.092742050Z ╵ 2024-06-20T08:07:11.092743550Z node_modules/vuetify/src/components/VAlert/VAlert.sass 141:16 root stylesheet 2024-06-20T08:07:11.092745134Z 2024-06-20T08:07:11.092995259Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.093004259Z 2024-06-20T08:07:11.093006342Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:11.093008175Z 2024-06-20T08:07:11.093009634Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.093011217Z 2024-06-20T08:07:11.093012634Z ╷ 2024-06-20T08:07:11.093014342Z 142 │ padding-bottom: $alert-padding / 2 2024-06-20T08:07:11.093015967Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.093017800Z ╵ 2024-06-20T08:07:11.093030759Z node_modules/vuetify/src/components/VAlert/VAlert.sass 142:19 root stylesheet 2024-06-20T08:07:11.093032425Z 2024-06-20T08:07:17.171582053Z ⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production... 2024-06-20T08:07:17.180555887Z ERROR Failed to compile with 1 error 8:07:17 AM 2024-06-20T08:07:17.180573095Z 2024-06-20T08:07:17.180880220Z error in ./src/store/modules/main.js 2024-06-20T08:07:17.180887053Z 2024-06-20T08:07:17.180888928Z Module parse failed: Identifier directly after number (88:35) 2024-06-20T08:07:17.180890553Z File was processed with these loaders: 2024-06-20T08:07:17.180899512Z ./node_modules/cache-loader/dist/cjs.js 2024-06-20T08:07:17.180901095Z ./node_modules/thread-loader/dist/cjs.js 2024-06-20T08:07:17.180902595Z ./node_modules/babel-loader/lib/index.js 2024-06-20T08:07:17.180904095Z ./node_modules/eslint-loader/index.js 2024-06-20T08:07:17.180905845Z You may need an additional loader to handle the result of these loaders. 2024-06-20T08:07:17.180907970Z | // see: https://www.chartjs.org/docs/latest/general/performance.html#decimation 2024-06-20T08:07:17.180909595Z | function roundedTimestamp(timestamp) { 2024-06-20T08:07:17.180911095Z > return timestamp - timestamp % 10_000; 2024-06-20T08:07:17.180912637Z | } 2024-06-20T08:07:17.180914095Z | export default { 2024-06-20T08:07:17.180915678Z 2024-06-20T08:07:17.180917137Z @ ./src/store/index.js 5:0-34 12:4-8 2024-06-20T08:07:17.180918637Z @ ./src/main.js 2024-06-20T08:07:17.180920095Z @ multi ./src/main.js 2024-06-20T08:07:17.180921595Z 2024-06-20T08:07:17.181279470Z ERROR Build failed with errors. 2024-06-20T08:07:17.264764595Z 2024-06-20T08:07:22.757309083Z 2024-06-20T08:07:22.757331792Z > ui@0.5.1 build 2024-06-20T08:07:22.757333875Z > vue-cli-service build 2024-06-20T08:07:22.757335458Z 2024-06-20T08:07:23.136694167Z 2024-06-20T08:07:25.861937960Z ⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.861968960Z 2024-06-20T08:07:25.861971002Z Recommendation: math.div($gutter, 2) or calc($gutter / 2) 2024-06-20T08:07:25.861972793Z 2024-06-20T08:07:25.861974252Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.861975877Z 2024-06-20T08:07:25.861977668Z ╷ 2024-06-20T08:07:25.861979293Z 30 │ padding: $gutter / 2 2024-06-20T08:07:25.861981210Z │ ^^^^^^^^^^^ 2024-06-20T08:07:25.861992085Z ╵ 2024-06-20T08:07:25.861993627Z node_modules/vuetify/src/components/VGrid/_grid.sass 30:22 root stylesheet 2024-06-20T08:07:25.861995168Z 2024-06-20T08:07:25.863540418Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.863547418Z 2024-06-20T08:07:25.863548835Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.863550335Z 2024-06-20T08:07:25.863551835Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.863553668Z 2024-06-20T08:07:25.863555002Z ╷ 2024-06-20T08:07:25.863556668Z 33 │ margin: -$gutter / 2 2024-06-20T08:07:25.863558377Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.863559877Z ╵ 2024-06-20T08:07:25.863561252Z node_modules/vuetify/src/components/VGrid/_grid.sass 33:19 root stylesheet 2024-06-20T08:07:25.863562710Z 2024-06-20T08:07:25.864580752Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.864603835Z 2024-06-20T08:07:25.864606252Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.864608002Z 2024-06-20T08:07:25.864609502Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.864611043Z 2024-06-20T08:07:25.864612377Z ╷ 2024-06-20T08:07:25.864614668Z 36 │ margin: auto (-$gutter / 2) 2024-06-20T08:07:25.864616335Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.864617960Z ╵ 2024-06-20T08:07:25.864619418Z node_modules/vuetify/src/components/VGrid/_grid.sass 36:25 root stylesheet 2024-06-20T08:07:25.864636418Z 2024-06-20T08:07:25.865986585Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.865998043Z 2024-06-20T08:07:25.865999668Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.866001252Z 2024-06-20T08:07:25.866002668Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.866004252Z 2024-06-20T08:07:25.866007835Z ╷ 2024-06-20T08:07:25.866016460Z 40 │ margin-top: -$gutter / 2 2024-06-20T08:07:25.866018168Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.866019752Z ╵ 2024-06-20T08:07:25.866021252Z node_modules/vuetify/src/components/VGrid/_grid.sass 40:25 root stylesheet 2024-06-20T08:07:25.866022793Z 2024-06-20T08:07:25.866965543Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.866976127Z 2024-06-20T08:07:25.866977835Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.866979460Z 2024-06-20T08:07:25.866981043Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.866983043Z 2024-06-20T08:07:25.866984460Z ╷ 2024-06-20T08:07:25.866986127Z 43 │ margin-bottom: -$gutter / 2 2024-06-20T08:07:25.866989960Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.866991877Z ╵ 2024-06-20T08:07:25.866993293Z node_modules/vuetify/src/components/VGrid/_grid.sass 43:28 root stylesheet 2024-06-20T08:07:25.866994918Z 2024-06-20T08:07:25.871219918Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.871230960Z 2024-06-20T08:07:25.871233043Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.871234835Z 2024-06-20T08:07:25.871236252Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.871237835Z 2024-06-20T08:07:25.871239252Z ╷ 2024-06-20T08:07:25.871241460Z 17 │ margin: -$gutter / 2 2024-06-20T08:07:25.871244418Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.871247710Z ╵ 2024-06-20T08:07:25.871249210Z node_modules/vuetify/src/components/VGrid/_mixins.sass 17:11 make-row() 2024-06-20T08:07:25.871251293Z node_modules/vuetify/src/components/VGrid/VGrid.sass 15:3 root stylesheet 2024-06-20T08:07:25.871253377Z 2024-06-20T08:07:25.872152293Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.872168335Z 2024-06-20T08:07:25.872170627Z Recommendation: math.div($grid-gutter, 2) or calc($grid-gutter / 2) 2024-06-20T08:07:25.872172252Z 2024-06-20T08:07:25.872178502Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.872180043Z 2024-06-20T08:07:25.872181502Z ╷ 2024-06-20T08:07:25.872183085Z 18 │ margin-top: $grid-gutter / 2 2024-06-20T08:07:25.872184668Z │ ^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.872186252Z ╵ 2024-06-20T08:07:25.872187752Z node_modules/vuetify/src/components/VGrid/VGrid.sass 18:17 root stylesheet 2024-06-20T08:07:25.872189293Z 2024-06-20T08:07:25.873227002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.873241668Z 2024-06-20T08:07:25.873244127Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:25.873245960Z 2024-06-20T08:07:25.873247418Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.873249002Z 2024-06-20T08:07:25.873250460Z ╷ 2024-06-20T08:07:25.873252377Z 21 │ margin-top: $form-grid-gutter / 2 2024-06-20T08:07:25.873254002Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.873255752Z ╵ 2024-06-20T08:07:25.873257377Z node_modules/vuetify/src/components/VGrid/VGrid.sass 21:19 root stylesheet 2024-06-20T08:07:25.873260627Z 2024-06-20T08:07:25.874383793Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.874392543Z 2024-06-20T08:07:25.874394085Z Recommendation: math.div(-$form-grid-gutter, 2) or calc(-1 * $form-grid-gutter / 2) 2024-06-20T08:07:25.874395752Z 2024-06-20T08:07:25.874397168Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.874398627Z 2024-06-20T08:07:25.874400043Z ╷ 2024-06-20T08:07:25.874401668Z 24 │ margin: -$form-grid-gutter / 2 2024-06-20T08:07:25.874403377Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.874404918Z ╵ 2024-06-20T08:07:25.874406377Z node_modules/vuetify/src/components/VGrid/VGrid.sass 24:13 root stylesheet 2024-06-20T08:07:25.874407835Z 2024-06-20T08:07:25.876534960Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.876547252Z 2024-06-20T08:07:25.876549210Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:25.876550877Z 2024-06-20T08:07:25.876552293Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.876553835Z 2024-06-20T08:07:25.876555252Z ╷ 2024-06-20T08:07:25.876556793Z 28 │ padding: $form-grid-gutter / 2 2024-06-20T08:07:25.876558418Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.876560168Z ╵ 2024-06-20T08:07:25.876561627Z node_modules/vuetify/src/components/VGrid/VGrid.sass 28:16 root stylesheet 2024-06-20T08:07:25.876563168Z 2024-06-20T08:07:26.081272127Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:26.081312668Z 2024-06-20T08:07:26.100327043Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:26.100363377Z 2024-06-20T08:07:26.371549502Z ⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:26.371596793Z 2024-06-20T08:07:26.371600377Z Recommendation: math.div($size, 2.25) or calc($size / 2.25) 2024-06-20T08:07:26.371602043Z 2024-06-20T08:07:26.371603543Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:26.371605043Z 2024-06-20T08:07:26.371617252Z ╷ 2024-06-20T08:07:26.371619085Z 83 │ padding: 0 #{$size / 2.25}px 2024-06-20T08:07:26.371632918Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:26.371634668Z ╵ 2024-06-20T08:07:26.371636168Z node_modules/vuetify/src/components/VBtn/VBtn.sass 83:22 root stylesheet 2024-06-20T08:07:26.371637710Z 2024-06-20T08:07:26.377142002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:26.377159335Z 2024-06-20T08:07:26.377161502Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:26.377163210Z 2024-06-20T08:07:26.377164710Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:26.377166252Z 2024-06-20T08:07:26.377167668Z ╷ 2024-06-20T08:07:26.377169502Z 219 │ bottom: -#{$size / 2}px 2024-06-20T08:07:26.377182168Z │ ^^^^^^^^^ 2024-06-20T08:07:26.377184293Z ╵ 2024-06-20T08:07:26.377185835Z node_modules/vuetify/src/components/VBtn/VBtn.sass 219:22 root stylesheet 2024-06-20T08:07:26.377187335Z 2024-06-20T08:07:26.377545752Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:26.377552293Z 2024-06-20T08:07:26.377553877Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:26.377555460Z 2024-06-20T08:07:26.377556918Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:26.377558502Z 2024-06-20T08:07:26.377559918Z ╷ 2024-06-20T08:07:26.377561502Z 222 │ top: -#{$size / 2}px 2024-06-20T08:07:26.377563085Z │ ^^^^^^^^^ 2024-06-20T08:07:26.377564627Z ╵ 2024-06-20T08:07:26.377566127Z node_modules/vuetify/src/components/VBtn/VBtn.sass 222:19 root stylesheet 2024-06-20T08:07:26.377567627Z 2024-06-20T08:07:27.559526044Z ⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.559561002Z 2024-06-20T08:07:27.559563461Z Recommendation: math.div(map-get($size, "height"), 2) or calc(map-get($size, "height") / 2) 2024-06-20T08:07:27.559565419Z 2024-06-20T08:07:27.559566919Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.559568711Z 2024-06-20T08:07:27.559570211Z ╷ 2024-06-20T08:07:27.559571752Z 202 │ border-radius: #{map-get($size, 'height') / 2}px 2024-06-20T08:07:27.559573502Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.559575127Z ╵ 2024-06-20T08:07:27.559576586Z node_modules/vuetify/src/components/VChip/VChip.sass 202:24 root stylesheet 2024-06-20T08:07:27.559578086Z 2024-06-20T08:07:27.904685419Z ⠙ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.904726919Z 2024-06-20T08:07:27.904729794Z Recommendation: math.div($dot-size, 2) or calc($dot-size / 2) 2024-06-20T08:07:27.904731377Z 2024-06-20T08:07:27.904732752Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.904734211Z 2024-06-20T08:07:27.904735544Z ╷ 2024-06-20T08:07:27.904736961Z 3 │ left: calc(50% - #{$dot-size / 2}) 2024-06-20T08:07:27.904738461Z │ ^^^^^^^^^^^^^ 2024-06-20T08:07:27.904739961Z ╵ 2024-06-20T08:07:27.904741377Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 3:22 timeline-dots() 2024-06-20T08:07:27.904742794Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:27.904744252Z 2024-06-20T08:07:27.905753002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.905763211Z 2024-06-20T08:07:27.905765127Z Recommendation: math.div($dot-size - $inner-dot-size, 2) or calc(($dot-size - $inner-dot-size) / 2) 2024-06-20T08:07:27.905766836Z 2024-06-20T08:07:27.905768461Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.905770294Z 2024-06-20T08:07:27.905771711Z ╷ 2024-06-20T08:07:27.905773336Z 8 │ margin: ($dot-size - $inner-dot-size) / 2 2024-06-20T08:07:27.905775044Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.905776627Z ╵ 2024-06-20T08:07:27.905778086Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 8:13 timeline-dots() 2024-06-20T08:07:27.905779711Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:27.905781336Z 2024-06-20T08:07:27.911515919Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.911542836Z 2024-06-20T08:07:27.911545336Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:27.911547086Z 2024-06-20T08:07:27.911548586Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.911550127Z 2024-06-20T08:07:27.911551794Z ╷ 2024-06-20T08:07:27.911553919Z 74 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:27.911562586Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.911564294Z ╵ 2024-06-20T08:07:27.911565794Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 74:51 root stylesheet 2024-06-20T08:07:27.911567336Z 2024-06-20T08:07:27.914577002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.914584711Z 2024-06-20T08:07:27.914586252Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:27.914588002Z 2024-06-20T08:07:27.914589461Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.914590961Z 2024-06-20T08:07:27.914592377Z ╷ 2024-06-20T08:07:27.914593961Z 83 │ max-width: calc(#{100% - $timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:27.914595669Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.914597461Z ╵ 2024-06-20T08:07:27.914599044Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 83:64 root stylesheet 2024-06-20T08:07:27.914600752Z 2024-06-20T08:07:27.918373086Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.918400002Z 2024-06-20T08:07:27.918402419Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:27.918404086Z 2024-06-20T08:07:27.918405794Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.918407461Z 2024-06-20T08:07:27.918408877Z ╷ 2024-06-20T08:07:27.918410836Z 89 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:27.918412711Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.918414627Z ╵ 2024-06-20T08:07:27.918416086Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 89:57 root stylesheet 2024-06-20T08:07:27.918417669Z 2024-06-20T08:07:27.932371086Z Warning: 6 repetitive deprecation warnings omitted. 2024-06-20T08:07:27.932392502Z 2024-06-20T08:07:28.077699294Z ⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.077751211Z 2024-06-20T08:07:28.077754211Z Recommendation: math.div(-$slider-thumb-size, 2) or calc(-1 $slider-thumb-size / 2) 2024-06-20T08:07:28.077756211Z 2024-06-20T08:07:28.077757711Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.077759253Z 2024-06-20T08:07:28.077760669Z ╷ 2024-06-20T08:07:28.077762211Z 50 │ left: -$slider-thumb-size / 2 2024-06-20T08:07:28.077763878Z │ ^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.077765503Z ╵ 2024-06-20T08:07:28.077766961Z node_modules/vuetify/src/components/VSlider/VSlider.sass 50:9 root stylesheet 2024-06-20T08:07:28.077768503Z 2024-06-20T08:07:28.079100044Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.079139336Z 2024-06-20T08:07:28.079142086Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:28.079143919Z 2024-06-20T08:07:28.079145586Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.079147128Z 2024-06-20T08:07:28.079148586Z ╷ 2024-06-20T08:07:28.079150544Z 67 │ left: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:28.079152211Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.079153794Z ╵ 2024-06-20T08:07:28.079155253Z node_modules/vuetify/src/components/VSlider/VSlider.sass 67:11 root stylesheet 2024-06-20T08:07:28.079156794Z 2024-06-20T08:07:28.079573378Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.079593086Z 2024-06-20T08:07:28.079595211Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:28.079597336Z 2024-06-20T08:07:28.079598753Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.079600253Z 2024-06-20T08:07:28.079601669Z ╷ 2024-06-20T08:07:28.079603253Z 68 │ top: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:28.079604878Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.079638044Z ╵ 2024-06-20T08:07:28.079640086Z node_modules/vuetify/src/components/VSlider/VSlider.sass 68:10 root stylesheet 2024-06-20T08:07:28.079641711Z 2024-06-20T08:07:28.088118878Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.088179211Z 2024-06-20T08:07:28.088182128Z Recommendation: math.div(-($slider-thumb-size - 4), 2) or calc(-1 ($slider-thumb-size - 4) / 2) 2024-06-20T08:07:28.088183878Z 2024-06-20T08:07:28.088185669Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.088187253Z 2024-06-20T08:07:28.088188628Z ╷ 2024-06-20T08:07:28.088190836Z 254 │ left: -($slider-thumb-size - 4) / 2 2024-06-20T08:07:28.088192503Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.088194044Z ╵ 2024-06-20T08:07:28.088209294Z node_modules/vuetify/src/components/VSlider/VSlider.sass 254:11 root stylesheet 2024-06-20T08:07:28.088211378Z 2024-06-20T08:07:31.213472421Z ⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.213498046Z 2024-06-20T08:07:31.213500587Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.213502254Z 2024-06-20T08:07:31.213503712Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.213505254Z 2024-06-20T08:07:31.213506671Z ╷ 2024-06-20T08:07:31.213508212Z 37 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.213509879Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.213511921Z ╵ 2024-06-20T08:07:31.213513421Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 37:22 @content 2024-06-20T08:07:31.213515004Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:31.213516546Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 36:7 root stylesheet 2024-06-20T08:07:31.213518087Z 2024-06-20T08:07:31.214065421Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.214087129Z 2024-06-20T08:07:31.214089671Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.214091504Z 2024-06-20T08:07:31.214093004Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.214094546Z 2024-06-20T08:07:31.214095962Z ╷ 2024-06-20T08:07:31.214097796Z 40 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.214099504Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.214101087Z ╵ 2024-06-20T08:07:31.214102546Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 40:23 @content 2024-06-20T08:07:31.214104504Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:31.214106087Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 39:7 root stylesheet 2024-06-20T08:07:31.214107671Z 2024-06-20T08:07:31.215261462Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.215274837Z 2024-06-20T08:07:31.215277087Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.215278754Z 2024-06-20T08:07:31.215280379Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.215281921Z 2024-06-20T08:07:31.215283337Z ╷ 2024-06-20T08:07:31.215285087Z 51 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.215286754Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.215288379Z ╵ 2024-06-20T08:07:31.215289837Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 51:23 @content 2024-06-20T08:07:31.215291421Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:31.215292962Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 50:7 root stylesheet 2024-06-20T08:07:31.215294504Z 2024-06-20T08:07:31.215748796Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.215761087Z 2024-06-20T08:07:31.215763046Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.215764629Z 2024-06-20T08:07:31.215770629Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.215772296Z 2024-06-20T08:07:31.215773712Z ╷ 2024-06-20T08:07:31.215775337Z 54 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.215776921Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.215778546Z ╵ 2024-06-20T08:07:31.215780212Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 54:22 @content 2024-06-20T08:07:31.215781754Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:31.215783296Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 53:7 root stylesheet 2024-06-20T08:07:31.215784879Z 2024-06-20T08:07:31.404574129Z ⠇ Building for production...⠏ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.404605962Z 2024-06-20T08:07:31.404608171Z Recommendation: math.div($switch-track-inset-height, 2) or calc($switch-track-inset-height / 2) 2024-06-20T08:07:31.404610004Z 2024-06-20T08:07:31.404611837Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.404613379Z 2024-06-20T08:07:31.404614796Z ╷ 2024-06-20T08:07:31.404616462Z 116 │ top: calc(50% - #{$switch-track-inset-height / 2}) 2024-06-20T08:07:31.404618171Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.404632962Z ╵ 2024-06-20T08:07:31.404635587Z node_modules/vuetify/src/components/VSwitch/VSwitch.sass 116:25 root stylesheet 2024-06-20T08:07:31.404637129Z 2024-06-20T08:07:31.883536796Z ⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.883565338Z 2024-06-20T08:07:31.883567921Z Recommendation: math.div($progress-linear-stream-border-width, 2) or calc($progress-linear-stream-border-width / 2) 2024-06-20T08:07:31.883569921Z 2024-06-20T08:07:31.883571379Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.883572963Z 2024-06-20T08:07:31.883574338Z ╷ 2024-06-20T08:07:31.883575879Z 113 │ top: calc(50% - #{$progress-linear-stream-border-width / 2}) 2024-06-20T08:07:31.883583629Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.883585463Z ╵ 2024-06-20T08:07:31.883586963Z node_modules/vuetify/src/components/VProgressLinear/VProgressLinear.sass 113:21 root stylesheet 2024-06-20T08:07:31.883588629Z 2024-06-20T08:07:33.326834172Z ⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.326876672Z 2024-06-20T08:07:33.326879380Z Recommendation: math.div(-$banner-y-padding, 2) or calc(-1 $banner-y-padding / 2) 2024-06-20T08:07:33.326881213Z 2024-06-20T08:07:33.326882672Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.326884255Z 2024-06-20T08:07:33.326885630Z ╷ 2024-06-20T08:07:33.326887130Z 26 │ margin-bottom: -$banner-y-padding / 2 2024-06-20T08:07:33.326888713Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.326890255Z ╵ 2024-06-20T08:07:33.326891713Z node_modules/vuetify/src/components/VBanner/VBanner.sass 26:18 root stylesheet 2024-06-20T08:07:33.326893172Z 2024-06-20T08:07:33.330778755Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.330809172Z 2024-06-20T08:07:33.330811672Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:33.330813422Z 2024-06-20T08:07:33.330814880Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.330816463Z 2024-06-20T08:07:33.330817922Z ╷ 2024-06-20T08:07:33.330819963Z 85 │ padding-top: $banner-y-padding / 2 2024-06-20T08:07:33.330821713Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.330823297Z ╵ 2024-06-20T08:07:33.330824797Z node_modules/vuetify/src/components/VBanner/VBanner.sass 85:18 root stylesheet 2024-06-20T08:07:33.330835797Z 2024-06-20T08:07:33.331127547Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.331138422Z 2024-06-20T08:07:33.331140463Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:33.331142505Z 2024-06-20T08:07:33.331144047Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.331145547Z 2024-06-20T08:07:33.331147172Z ╷ 2024-06-20T08:07:33.331149213Z 86 │ padding-bottom: $banner-y-padding / 2 2024-06-20T08:07:33.331150838Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.331152422Z ╵ 2024-06-20T08:07:33.331153880Z node_modules/vuetify/src/components/VBanner/VBanner.sass 86:21 root stylesheet 2024-06-20T08:07:33.331155547Z 2024-06-20T08:07:33.428540463Z ⠸ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.428574963Z 2024-06-20T08:07:33.428577713Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:33.428579380Z 2024-06-20T08:07:33.428580922Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.428582838Z 2024-06-20T08:07:33.428584255Z ╷ 2024-06-20T08:07:33.428585838Z 141 │ padding-top: $alert-padding / 2 2024-06-20T08:07:33.428587463Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.428589130Z ╵ 2024-06-20T08:07:33.428590630Z node_modules/vuetify/src/components/VAlert/VAlert.sass 141:16 root stylesheet 2024-06-20T08:07:33.428592172Z 2024-06-20T08:07:33.428778880Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.428795172Z 2024-06-20T08:07:33.428797838Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:33.428799505Z 2024-06-20T08:07:33.428801047Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.428802588Z 2024-06-20T08:07:33.428804047Z ╷ 2024-06-20T08:07:33.428805797Z 142 │ padding-bottom: $alert-padding / 2 2024-06-20T08:07:33.428807463Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.428818380Z ╵ 2024-06-20T08:07:33.428819922Z node_modules/vuetify/src/components/VAlert/VAlert.sass 142:19 root stylesheet 2024-06-20T08:07:33.428821463Z 2024-06-20T08:07:36.667992340Z ⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production... 2024-06-20T08:07:36.675225798Z ERROR Failed to compile with 1 error 8:07:36 AM 2024-06-20T08:07:36.675348715Z 2024-06-20T08:07:36.675549173Z error in ./src/store/modules/main.js 2024-06-20T08:07:36.675618215Z 2024-06-20T08:07:36.675638215Z Module parse failed: Identifier directly after number (88:35) 2024-06-20T08:07:36.675640090Z File was processed with these loaders: 2024-06-20T08:07:36.675642173Z ./node_modules/cache-loader/dist/cjs.js 2024-06-20T08:07:36.675645673Z ./node_modules/thread-loader/dist/cjs.js 2024-06-20T08:07:36.675648090Z ./node_modules/babel-loader/lib/index.js 2024-06-20T08:07:36.675649507Z * ./node_modules/eslint-loader/index.js 2024-06-20T08:07:36.675651007Z You may need an additional loader to handle the result of these loaders. 2024-06-20T08:07:36.675652590Z | // see: https://www.chartjs.org/docs/latest/general/performance.html#decimation 2024-06-20T08:07:36.675654715Z | function roundedTimestamp(timestamp) { 2024-06-20T08:07:36.675656840Z > return timestamp - timestamp % 10_000; 2024-06-20T08:07:36.675658507Z | } 2024-06-20T08:07:36.675659965Z | export default { 2024-06-20T08:07:36.675664465Z 2024-06-20T08:07:36.675666215Z @ ./src/store/index.js 5:0-34 12:4-8 2024-06-20T08:07:36.675667757Z @ ./src/main.js 2024-06-20T08:07:36.675669215Z @ multi ./src/main.js 2024-06-20T08:07:36.675671507Z 2024-06-20T08:07:36.675975132Z ERROR Build failed with errors. 2024-06-20T08:07:36.732478298Z 但是运行后成这样了,这是什么原因呢

kekekekekeshi commented 2 months ago

2024-06-20T08:06:56.396783543Z 2024-06-20T08:06:56.396825252Z > ui@0.5.1 build 2024-06-20T08:06:56.396827668Z > vue-cli-service build 2024-06-20T08:06:56.396829335Z 2024-06-20T08:06:56.785803877Z 2024-06-20T08:07:02.538518963Z ⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.538571838Z 2024-06-20T08:07:02.538574421Z Recommendation: math.div($gutter, 2) or calc($gutter / 2) 2024-06-20T08:07:02.538576088Z 2024-06-20T08:07:02.538578630Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.538580421Z 2024-06-20T08:07:02.538581880Z ╷ 2024-06-20T08:07:02.538583463Z 30 │ padding: $gutter / 2 2024-06-20T08:07:02.538585088Z │ ^^^^^^^^^^^ 2024-06-20T08:07:02.538586796Z ╵ 2024-06-20T08:07:02.538588255Z node_modules/vuetify/src/components/VGrid/_grid.sass 30:22 root stylesheet 2024-06-20T08:07:02.538589838Z 2024-06-20T08:07:02.539713838Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.539726130Z 2024-06-20T08:07:02.539738713Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.539740463Z 2024-06-20T08:07:02.539742005Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.539743588Z 2024-06-20T08:07:02.539747796Z ╷ 2024-06-20T08:07:02.539751171Z 33 │ margin: -$gutter / 2 2024-06-20T08:07:02.539753171Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.539755171Z ╵ 2024-06-20T08:07:02.539756838Z node_modules/vuetify/src/components/VGrid/_grid.sass 33:19 root stylesheet 2024-06-20T08:07:02.539758546Z 2024-06-20T08:07:02.540807713Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.540823255Z 2024-06-20T08:07:02.540825380Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.540827130Z 2024-06-20T08:07:02.540828588Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.540830130Z 2024-06-20T08:07:02.540831588Z ╷ 2024-06-20T08:07:02.540833213Z 36 │ margin: auto (-$gutter / 2) 2024-06-20T08:07:02.540834880Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.540836463Z ╵ 2024-06-20T08:07:02.540837921Z node_modules/vuetify/src/components/VGrid/_grid.sass 36:25 root stylesheet 2024-06-20T08:07:02.540839713Z 2024-06-20T08:07:02.542105421Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.542113796Z 2024-06-20T08:07:02.542115505Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.542117088Z 2024-06-20T08:07:02.542118588Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.542120463Z 2024-06-20T08:07:02.542121921Z ╷ 2024-06-20T08:07:02.542123505Z 40 │ margin-top: -$gutter / 2 2024-06-20T08:07:02.542125130Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.542126755Z ╵ 2024-06-20T08:07:02.542128255Z node_modules/vuetify/src/components/VGrid/_grid.sass 40:25 root stylesheet 2024-06-20T08:07:02.542130005Z 2024-06-20T08:07:02.543086255Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.543100213Z 2024-06-20T08:07:02.543102338Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.543104171Z 2024-06-20T08:07:02.543105713Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.543107255Z 2024-06-20T08:07:02.543108671Z ╷ 2024-06-20T08:07:02.543110421Z 43 │ margin-bottom: -$gutter / 2 2024-06-20T08:07:02.543112171Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.543113880Z ╵ 2024-06-20T08:07:02.543115463Z node_modules/vuetify/src/components/VGrid/_grid.sass 43:28 root stylesheet 2024-06-20T08:07:02.543117005Z 2024-06-20T08:07:02.547526671Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.547546338Z 2024-06-20T08:07:02.547548005Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:02.547549588Z 2024-06-20T08:07:02.547551171Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.547552713Z 2024-06-20T08:07:02.547554130Z ╷ 2024-06-20T08:07:02.547555796Z 17 │ margin: -$gutter / 2 2024-06-20T08:07:02.547557463Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:02.547559005Z ╵ 2024-06-20T08:07:02.547560505Z node_modules/vuetify/src/components/VGrid/_mixins.sass 17:11 make-row() 2024-06-20T08:07:02.547562046Z node_modules/vuetify/src/components/VGrid/VGrid.sass 15:3 root stylesheet 2024-06-20T08:07:02.547563630Z 2024-06-20T08:07:02.548606838Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.548614630Z 2024-06-20T08:07:02.548616421Z Recommendation: math.div($grid-gutter, 2) or calc($grid-gutter / 2) 2024-06-20T08:07:02.548618046Z 2024-06-20T08:07:02.548619505Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.548620963Z 2024-06-20T08:07:02.548622505Z ╷ 2024-06-20T08:07:02.548624130Z 18 │ margin-top: $grid-gutter / 2 2024-06-20T08:07:02.548625713Z │ ^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.548627380Z ╵ 2024-06-20T08:07:02.548645005Z node_modules/vuetify/src/components/VGrid/VGrid.sass 18:17 root stylesheet 2024-06-20T08:07:02.548647171Z 2024-06-20T08:07:02.549700713Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.549710713Z 2024-06-20T08:07:02.549712296Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:02.549713963Z 2024-06-20T08:07:02.549715671Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.549717630Z 2024-06-20T08:07:02.549719088Z ╷ 2024-06-20T08:07:02.549720713Z 21 │ margin-top: $form-grid-gutter / 2 2024-06-20T08:07:02.549722380Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.549724046Z ╵ 2024-06-20T08:07:02.549725505Z node_modules/vuetify/src/components/VGrid/VGrid.sass 21:19 root stylesheet 2024-06-20T08:07:02.549727046Z 2024-06-20T08:07:02.550667963Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.550678380Z 2024-06-20T08:07:02.550680213Z Recommendation: math.div(-$form-grid-gutter, 2) or calc(-1 $form-grid-gutter / 2) 2024-06-20T08:07:02.550681963Z 2024-06-20T08:07:02.550683505Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.550685046Z 2024-06-20T08:07:02.550686421Z ╷ 2024-06-20T08:07:02.550688171Z 24 │ margin: -$form-grid-gutter / 2 2024-06-20T08:07:02.550689838Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.550691421Z ╵ 2024-06-20T08:07:02.550692880Z node_modules/vuetify/src/components/VGrid/VGrid.sass 24:13 root stylesheet 2024-06-20T08:07:02.550694421Z 2024-06-20T08:07:02.552788255Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:02.552799880Z 2024-06-20T08:07:02.552801713Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:02.552803463Z 2024-06-20T08:07:02.552804963Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:02.552806546Z 2024-06-20T08:07:02.552808046Z ╷ 2024-06-20T08:07:02.552810046Z 28 │ padding: $form-grid-gutter / 2 2024-06-20T08:07:02.552816671Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:02.552818421Z ╵ 2024-06-20T08:07:02.552819921Z node_modules/vuetify/src/components/VGrid/VGrid.sass 28:16 root stylesheet 2024-06-20T08:07:02.552821588Z 2024-06-20T08:07:02.755855796Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:02.755889046Z 2024-06-20T08:07:02.775143880Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:02.775182880Z 2024-06-20T08:07:03.410036672Z ⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.410074213Z 2024-06-20T08:07:03.410076713Z Recommendation: math.div($switch-track-inset-height, 2) or calc($switch-track-inset-height / 2) 2024-06-20T08:07:03.410078630Z 2024-06-20T08:07:03.410080255Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.410082005Z 2024-06-20T08:07:03.410083463Z ╷ 2024-06-20T08:07:03.410085255Z 116 │ top: calc(50% - #{$switch-track-inset-height / 2}) 2024-06-20T08:07:03.410087005Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.410088630Z ╵ 2024-06-20T08:07:03.410090130Z node_modules/vuetify/src/components/VSwitch/VSwitch.sass 116:25 root stylesheet 2024-06-20T08:07:03.410092088Z 2024-06-20T08:07:03.421763713Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.421789588Z 2024-06-20T08:07:03.421792213Z Recommendation: math.div($size, 2.25) or calc($size / 2.25) 2024-06-20T08:07:03.421793963Z 2024-06-20T08:07:03.421795547Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.421797505Z 2024-06-20T08:07:03.421798922Z ╷ 2024-06-20T08:07:03.421800880Z 83 │ padding: 0 #{$size / 2.25}px 2024-06-20T08:07:03.421802547Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:03.421804213Z ╵ 2024-06-20T08:07:03.421805713Z node_modules/vuetify/src/components/VBtn/VBtn.sass 83:22 root stylesheet 2024-06-20T08:07:03.421816088Z 2024-06-20T08:07:03.427983255Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.428004047Z 2024-06-20T08:07:03.428006422Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:03.428008130Z 2024-06-20T08:07:03.428009672Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.428011547Z 2024-06-20T08:07:03.428013130Z ╷ 2024-06-20T08:07:03.428015047Z 219 │ bottom: -#{$size / 2}px 2024-06-20T08:07:03.428016755Z │ ^^^^^^^^^ 2024-06-20T08:07:03.428018338Z ╵ 2024-06-20T08:07:03.428019838Z node_modules/vuetify/src/components/VBtn/VBtn.sass 219:22 root stylesheet 2024-06-20T08:07:03.428021713Z 2024-06-20T08:07:03.428462422Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.428479338Z 2024-06-20T08:07:03.428481338Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:03.428482963Z 2024-06-20T08:07:03.428484463Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.428485922Z 2024-06-20T08:07:03.428487338Z ╷ 2024-06-20T08:07:03.428489422Z 222 │ top: -#{$size / 2}px 2024-06-20T08:07:03.428491755Z │ ^^^^^^^^^ 2024-06-20T08:07:03.428493297Z ╵ 2024-06-20T08:07:03.428494672Z node_modules/vuetify/src/components/VBtn/VBtn.sass 222:19 root stylesheet 2024-06-20T08:07:03.428496713Z 2024-06-20T08:07:03.944333422Z ⠸ Building for production...⠼ Building for production...⠴ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.944374172Z 2024-06-20T08:07:03.944377339Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.944379464Z 2024-06-20T08:07:03.944383964Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.944388630Z 2024-06-20T08:07:03.944390255Z ╷ 2024-06-20T08:07:03.944391880Z 37 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.944401505Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.944403964Z ╵ 2024-06-20T08:07:03.944405505Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 37:22 @content 2024-06-20T08:07:03.944407255Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:03.944408797Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 36:7 root stylesheet 2024-06-20T08:07:03.944410380Z 2024-06-20T08:07:03.947787214Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.947807880Z 2024-06-20T08:07:03.947810214Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.947811964Z 2024-06-20T08:07:03.947813422Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.947814964Z 2024-06-20T08:07:03.947816422Z ╷ 2024-06-20T08:07:03.947818464Z 40 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.947820130Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.947821839Z ╵ 2024-06-20T08:07:03.947823339Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 40:23 @content 2024-06-20T08:07:03.947824964Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:03.947826547Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 39:7 root stylesheet 2024-06-20T08:07:03.947829089Z 2024-06-20T08:07:03.950983839Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.950996505Z 2024-06-20T08:07:03.950998130Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.950999714Z 2024-06-20T08:07:03.951001172Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.951002964Z 2024-06-20T08:07:03.951004380Z ╷ 2024-06-20T08:07:03.951006130Z 51 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.951007714Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.951009339Z ╵ 2024-06-20T08:07:03.951011089Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 51:23 @content 2024-06-20T08:07:03.951012672Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:03.951021922Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 50:7 root stylesheet 2024-06-20T08:07:03.951024797Z 2024-06-20T08:07:03.951991547Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:03.952011755Z 2024-06-20T08:07:03.952014255Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:03.952016172Z 2024-06-20T08:07:03.952017714Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:03.952019255Z 2024-06-20T08:07:03.952020714Z ╷ 2024-06-20T08:07:03.952022464Z 54 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:03.952024172Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:03.952025755Z ╵ 2024-06-20T08:07:03.952027214Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 54:22 @content 2024-06-20T08:07:03.952028797Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:03.952030339Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 53:7 root stylesheet 2024-06-20T08:07:03.952031880Z 2024-06-20T08:07:07.165211924Z ⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:07.165262674Z 2024-06-20T08:07:07.165265382Z Recommendation: math.div(map-get($size, "height"), 2) or calc(map-get($size, "height") / 2) 2024-06-20T08:07:07.165267382Z 2024-06-20T08:07:07.165268924Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:07.165270549Z 2024-06-20T08:07:07.165272007Z ╷ 2024-06-20T08:07:07.165273549Z 202 │ border-radius: #{map-get($size, 'height') / 2}px 2024-06-20T08:07:07.165275257Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:07.165276924Z ╵ 2024-06-20T08:07:07.165289507Z node_modules/vuetify/src/components/VChip/VChip.sass 202:24 root stylesheet 2024-06-20T08:07:07.165291174Z 2024-06-20T08:07:08.573490841Z ⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.573529216Z 2024-06-20T08:07:08.573532008Z Recommendation: math.div($dot-size, 2) or calc($dot-size / 2) 2024-06-20T08:07:08.573534008Z 2024-06-20T08:07:08.573535591Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.573537174Z 2024-06-20T08:07:08.573538591Z ╷ 2024-06-20T08:07:08.573541716Z 3 │ left: calc(50% - #{$dot-size / 2}) 2024-06-20T08:07:08.573543341Z │ ^^^^^^^^^^^^^ 2024-06-20T08:07:08.573544966Z ╵ 2024-06-20T08:07:08.573546841Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 3:22 timeline-dots() 2024-06-20T08:07:08.573548466Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:08.573550008Z 2024-06-20T08:07:08.575036216Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.575079591Z 2024-06-20T08:07:08.575088341Z Recommendation: math.div($dot-size - $inner-dot-size, 2) or calc(($dot-size - $inner-dot-size) / 2) 2024-06-20T08:07:08.575090633Z 2024-06-20T08:07:08.575092174Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.575094258Z 2024-06-20T08:07:08.575095716Z ╷ 2024-06-20T08:07:08.575097466Z 8 │ margin: ($dot-size - $inner-dot-size) / 2 2024-06-20T08:07:08.575099341Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.575100924Z ╵ 2024-06-20T08:07:08.575102466Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 8:13 timeline-dots() 2024-06-20T08:07:08.575104258Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:08.575114758Z 2024-06-20T08:07:08.581004716Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.581032091Z 2024-06-20T08:07:08.581034466Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:08.581036174Z 2024-06-20T08:07:08.581037716Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.581039258Z 2024-06-20T08:07:08.581040633Z ╷ 2024-06-20T08:07:08.581042758Z 74 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:08.581044549Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.581046174Z ╵ 2024-06-20T08:07:08.581047633Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 74:51 root stylesheet 2024-06-20T08:07:08.581049216Z 2024-06-20T08:07:08.583712508Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.583734716Z 2024-06-20T08:07:08.583737383Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:08.583739133Z 2024-06-20T08:07:08.583740674Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.583742216Z 2024-06-20T08:07:08.583743633Z ╷ 2024-06-20T08:07:08.583746091Z 83 │ max-width: calc(#{100% - $timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:08.583747966Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.583749674Z ╵ 2024-06-20T08:07:08.583751299Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 83:64 root stylesheet 2024-06-20T08:07:08.583752883Z 2024-06-20T08:07:08.585146341Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.585165633Z 2024-06-20T08:07:08.585167674Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:08.585169341Z 2024-06-20T08:07:08.585171133Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.585172841Z 2024-06-20T08:07:08.585174216Z ╷ 2024-06-20T08:07:08.585176008Z 89 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:08.585185799Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.585187591Z ╵ 2024-06-20T08:07:08.585189049Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 89:57 root stylesheet 2024-06-20T08:07:08.585190674Z 2024-06-20T08:07:08.594722091Z Warning: 6 repetitive deprecation warnings omitted. 2024-06-20T08:07:08.594733841Z 2024-06-20T08:07:08.951172883Z ⠦ Building for production...⠧ Building for production...⠇ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.951208591Z 2024-06-20T08:07:08.951211924Z Recommendation: math.div(-$slider-thumb-size, 2) or calc(-1 $slider-thumb-size / 2) 2024-06-20T08:07:08.951213799Z 2024-06-20T08:07:08.951215341Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.951216883Z 2024-06-20T08:07:08.951223258Z ╷ 2024-06-20T08:07:08.951224799Z 50 │ left: -$slider-thumb-size / 2 2024-06-20T08:07:08.951226591Z │ ^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.951228341Z ╵ 2024-06-20T08:07:08.951230091Z node_modules/vuetify/src/components/VSlider/VSlider.sass 50:9 root stylesheet 2024-06-20T08:07:08.951231799Z 2024-06-20T08:07:08.952595216Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.952640383Z 2024-06-20T08:07:08.952643633Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:08.952645466Z 2024-06-20T08:07:08.952646924Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.952648799Z 2024-06-20T08:07:08.952650216Z ╷ 2024-06-20T08:07:08.952657758Z 67 │ left: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:08.952659549Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.952661633Z ╵ 2024-06-20T08:07:08.952663174Z node_modules/vuetify/src/components/VSlider/VSlider.sass 67:11 root stylesheet 2024-06-20T08:07:08.952664716Z 2024-06-20T08:07:08.953107383Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.953121799Z 2024-06-20T08:07:08.953124133Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:08.953126133Z 2024-06-20T08:07:08.953127633Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.953129174Z 2024-06-20T08:07:08.953130591Z ╷ 2024-06-20T08:07:08.953132299Z 68 │ top: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:08.953134049Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.953135633Z ╵ 2024-06-20T08:07:08.953137133Z node_modules/vuetify/src/components/VSlider/VSlider.sass 68:10 root stylesheet 2024-06-20T08:07:08.953138674Z 2024-06-20T08:07:08.959960091Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:08.959974841Z 2024-06-20T08:07:08.959976716Z Recommendation: math.div(-($slider-thumb-size - 4), 2) or calc(-1 ($slider-thumb-size - 4) / 2) 2024-06-20T08:07:08.959978549Z 2024-06-20T08:07:08.959980091Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:08.959981633Z 2024-06-20T08:07:08.959983049Z ╷ 2024-06-20T08:07:08.959985133Z 254 │ left: -($slider-thumb-size - 4) / 2 2024-06-20T08:07:08.959986799Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:08.959988383Z ╵ 2024-06-20T08:07:08.959989883Z node_modules/vuetify/src/components/VSlider/VSlider.sass 254:11 root stylesheet 2024-06-20T08:07:08.959991466Z 2024-06-20T08:07:09.759257883Z ⠏ Building for production...⠋ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:09.759290341Z 2024-06-20T08:07:09.759294925Z Recommendation: math.div($progress-linear-stream-border-width, 2) or calc($progress-linear-stream-border-width / 2) 2024-06-20T08:07:09.759297216Z 2024-06-20T08:07:09.759299841Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:09.759303883Z 2024-06-20T08:07:09.759305383Z ╷ 2024-06-20T08:07:09.759307091Z 113 │ top: calc(50% - #{$progress-linear-stream-border-width / 2}) 2024-06-20T08:07:09.759315550Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:09.759317341Z ╵ 2024-06-20T08:07:09.759318841Z node_modules/vuetify/src/components/VProgressLinear/VProgressLinear.sass 113:21 root stylesheet 2024-06-20T08:07:09.759320883Z 2024-06-20T08:07:11.022926342Z ⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.022969259Z 2024-06-20T08:07:11.022974509Z Recommendation: math.div(-$banner-y-padding, 2) or calc(-1 $banner-y-padding / 2) 2024-06-20T08:07:11.022976300Z 2024-06-20T08:07:11.022977884Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.022979509Z 2024-06-20T08:07:11.022981050Z ╷ 2024-06-20T08:07:11.022982717Z 26 │ margin-bottom: -$banner-y-padding / 2 2024-06-20T08:07:11.022984342Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.022986092Z ╵ 2024-06-20T08:07:11.022987634Z node_modules/vuetify/src/components/VBanner/VBanner.sass 26:18 root stylesheet 2024-06-20T08:07:11.022989467Z 2024-06-20T08:07:11.025501842Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.025521717Z 2024-06-20T08:07:11.025527592Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:11.025529384Z 2024-06-20T08:07:11.025530884Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.025532384Z 2024-06-20T08:07:11.025533842Z ╷ 2024-06-20T08:07:11.025535800Z 85 │ padding-top: $banner-y-padding / 2 2024-06-20T08:07:11.025537425Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.025539050Z ╵ 2024-06-20T08:07:11.025540550Z node_modules/vuetify/src/components/VBanner/VBanner.sass 85:18 root stylesheet 2024-06-20T08:07:11.025542050Z 2024-06-20T08:07:11.025781092Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.025796967Z 2024-06-20T08:07:11.025798967Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:11.025800675Z 2024-06-20T08:07:11.025802175Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.025803884Z 2024-06-20T08:07:11.025805342Z ╷ 2024-06-20T08:07:11.025807050Z 86 │ padding-bottom: $banner-y-padding / 2 2024-06-20T08:07:11.025808759Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.025810425Z ╵ 2024-06-20T08:07:11.025811925Z node_modules/vuetify/src/components/VBanner/VBanner.sass 86:21 root stylesheet 2024-06-20T08:07:11.025813509Z 2024-06-20T08:07:11.092691967Z ⠇ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.092728342Z 2024-06-20T08:07:11.092730967Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:11.092732675Z 2024-06-20T08:07:11.092734175Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.092735759Z 2024-06-20T08:07:11.092737175Z ╷ 2024-06-20T08:07:11.092738884Z 141 │ padding-top: $alert-padding / 2 2024-06-20T08:07:11.092740467Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.092742050Z ╵ 2024-06-20T08:07:11.092743550Z node_modules/vuetify/src/components/VAlert/VAlert.sass 141:16 root stylesheet 2024-06-20T08:07:11.092745134Z 2024-06-20T08:07:11.092995259Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:11.093004259Z 2024-06-20T08:07:11.093006342Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:11.093008175Z 2024-06-20T08:07:11.093009634Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:11.093011217Z 2024-06-20T08:07:11.093012634Z ╷ 2024-06-20T08:07:11.093014342Z 142 │ padding-bottom: $alert-padding / 2 2024-06-20T08:07:11.093015967Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:11.093017800Z ╵ 2024-06-20T08:07:11.093030759Z node_modules/vuetify/src/components/VAlert/VAlert.sass 142:19 root stylesheet 2024-06-20T08:07:11.093032425Z 2024-06-20T08:07:17.171582053Z ⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production... 2024-06-20T08:07:17.180555887Z ERROR Failed to compile with 1 error 8:07:17 AM 2024-06-20T08:07:17.180573095Z 2024-06-20T08:07:17.180880220Z error in ./src/store/modules/main.js 2024-06-20T08:07:17.180887053Z 2024-06-20T08:07:17.180888928Z Module parse failed: Identifier directly after number (88:35) 2024-06-20T08:07:17.180890553Z File was processed with these loaders: 2024-06-20T08:07:17.180899512Z ./node_modules/cache-loader/dist/cjs.js 2024-06-20T08:07:17.180901095Z ./node_modules/thread-loader/dist/cjs.js 2024-06-20T08:07:17.180902595Z ./node_modules/babel-loader/lib/index.js 2024-06-20T08:07:17.180904095Z ./node_modules/eslint-loader/index.js 2024-06-20T08:07:17.180905845Z You may need an additional loader to handle the result of these loaders. 2024-06-20T08:07:17.180907970Z | // see: https://www.chartjs.org/docs/latest/general/performance.html#decimation 2024-06-20T08:07:17.180909595Z | function roundedTimestamp(timestamp) { 2024-06-20T08:07:17.180911095Z > return timestamp - timestamp % 10_000; 2024-06-20T08:07:17.180912637Z | } 2024-06-20T08:07:17.180914095Z | export default { 2024-06-20T08:07:17.180915678Z 2024-06-20T08:07:17.180917137Z @ ./src/store/index.js 5:0-34 12:4-8 2024-06-20T08:07:17.180918637Z @ ./src/main.js 2024-06-20T08:07:17.180920095Z @ multi ./src/main.js 2024-06-20T08:07:17.180921595Z 2024-06-20T08:07:17.181279470Z ERROR Build failed with errors. 2024-06-20T08:07:17.264764595Z 2024-06-20T08:07:22.757309083Z 2024-06-20T08:07:22.757331792Z > ui@0.5.1 build 2024-06-20T08:07:22.757333875Z > vue-cli-service build 2024-06-20T08:07:22.757335458Z 2024-06-20T08:07:23.136694167Z 2024-06-20T08:07:25.861937960Z ⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.861968960Z 2024-06-20T08:07:25.861971002Z Recommendation: math.div($gutter, 2) or calc($gutter / 2) 2024-06-20T08:07:25.861972793Z 2024-06-20T08:07:25.861974252Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.861975877Z 2024-06-20T08:07:25.861977668Z ╷ 2024-06-20T08:07:25.861979293Z 30 │ padding: $gutter / 2 2024-06-20T08:07:25.861981210Z │ ^^^^^^^^^^^ 2024-06-20T08:07:25.861992085Z ╵ 2024-06-20T08:07:25.861993627Z node_modules/vuetify/src/components/VGrid/_grid.sass 30:22 root stylesheet 2024-06-20T08:07:25.861995168Z 2024-06-20T08:07:25.863540418Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.863547418Z 2024-06-20T08:07:25.863548835Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.863550335Z 2024-06-20T08:07:25.863551835Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.863553668Z 2024-06-20T08:07:25.863555002Z ╷ 2024-06-20T08:07:25.863556668Z 33 │ margin: -$gutter / 2 2024-06-20T08:07:25.863558377Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.863559877Z ╵ 2024-06-20T08:07:25.863561252Z node_modules/vuetify/src/components/VGrid/_grid.sass 33:19 root stylesheet 2024-06-20T08:07:25.863562710Z 2024-06-20T08:07:25.864580752Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.864603835Z 2024-06-20T08:07:25.864606252Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.864608002Z 2024-06-20T08:07:25.864609502Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.864611043Z 2024-06-20T08:07:25.864612377Z ╷ 2024-06-20T08:07:25.864614668Z 36 │ margin: auto (-$gutter / 2) 2024-06-20T08:07:25.864616335Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.864617960Z ╵ 2024-06-20T08:07:25.864619418Z node_modules/vuetify/src/components/VGrid/_grid.sass 36:25 root stylesheet 2024-06-20T08:07:25.864636418Z 2024-06-20T08:07:25.865986585Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.865998043Z 2024-06-20T08:07:25.865999668Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.866001252Z 2024-06-20T08:07:25.866002668Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.866004252Z 2024-06-20T08:07:25.866007835Z ╷ 2024-06-20T08:07:25.866016460Z 40 │ margin-top: -$gutter / 2 2024-06-20T08:07:25.866018168Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.866019752Z ╵ 2024-06-20T08:07:25.866021252Z node_modules/vuetify/src/components/VGrid/_grid.sass 40:25 root stylesheet 2024-06-20T08:07:25.866022793Z 2024-06-20T08:07:25.866965543Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.866976127Z 2024-06-20T08:07:25.866977835Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.866979460Z 2024-06-20T08:07:25.866981043Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.866983043Z 2024-06-20T08:07:25.866984460Z ╷ 2024-06-20T08:07:25.866986127Z 43 │ margin-bottom: -$gutter / 2 2024-06-20T08:07:25.866989960Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.866991877Z ╵ 2024-06-20T08:07:25.866993293Z node_modules/vuetify/src/components/VGrid/_grid.sass 43:28 root stylesheet 2024-06-20T08:07:25.866994918Z 2024-06-20T08:07:25.871219918Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.871230960Z 2024-06-20T08:07:25.871233043Z Recommendation: math.div(-$gutter, 2) or calc(-1 $gutter / 2) 2024-06-20T08:07:25.871234835Z 2024-06-20T08:07:25.871236252Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.871237835Z 2024-06-20T08:07:25.871239252Z ╷ 2024-06-20T08:07:25.871241460Z 17 │ margin: -$gutter / 2 2024-06-20T08:07:25.871244418Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:25.871247710Z ╵ 2024-06-20T08:07:25.871249210Z node_modules/vuetify/src/components/VGrid/_mixins.sass 17:11 make-row() 2024-06-20T08:07:25.871251293Z node_modules/vuetify/src/components/VGrid/VGrid.sass 15:3 root stylesheet 2024-06-20T08:07:25.871253377Z 2024-06-20T08:07:25.872152293Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.872168335Z 2024-06-20T08:07:25.872170627Z Recommendation: math.div($grid-gutter, 2) or calc($grid-gutter / 2) 2024-06-20T08:07:25.872172252Z 2024-06-20T08:07:25.872178502Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.872180043Z 2024-06-20T08:07:25.872181502Z ╷ 2024-06-20T08:07:25.872183085Z 18 │ margin-top: $grid-gutter / 2 2024-06-20T08:07:25.872184668Z │ ^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.872186252Z ╵ 2024-06-20T08:07:25.872187752Z node_modules/vuetify/src/components/VGrid/VGrid.sass 18:17 root stylesheet 2024-06-20T08:07:25.872189293Z 2024-06-20T08:07:25.873227002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.873241668Z 2024-06-20T08:07:25.873244127Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:25.873245960Z 2024-06-20T08:07:25.873247418Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.873249002Z 2024-06-20T08:07:25.873250460Z ╷ 2024-06-20T08:07:25.873252377Z 21 │ margin-top: $form-grid-gutter / 2 2024-06-20T08:07:25.873254002Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.873255752Z ╵ 2024-06-20T08:07:25.873257377Z node_modules/vuetify/src/components/VGrid/VGrid.sass 21:19 root stylesheet 2024-06-20T08:07:25.873260627Z 2024-06-20T08:07:25.874383793Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.874392543Z 2024-06-20T08:07:25.874394085Z Recommendation: math.div(-$form-grid-gutter, 2) or calc(-1 * $form-grid-gutter / 2) 2024-06-20T08:07:25.874395752Z 2024-06-20T08:07:25.874397168Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.874398627Z 2024-06-20T08:07:25.874400043Z ╷ 2024-06-20T08:07:25.874401668Z 24 │ margin: -$form-grid-gutter / 2 2024-06-20T08:07:25.874403377Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.874404918Z ╵ 2024-06-20T08:07:25.874406377Z node_modules/vuetify/src/components/VGrid/VGrid.sass 24:13 root stylesheet 2024-06-20T08:07:25.874407835Z 2024-06-20T08:07:25.876534960Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:25.876547252Z 2024-06-20T08:07:25.876549210Z Recommendation: math.div($form-grid-gutter, 2) or calc($form-grid-gutter / 2) 2024-06-20T08:07:25.876550877Z 2024-06-20T08:07:25.876552293Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:25.876553835Z 2024-06-20T08:07:25.876555252Z ╷ 2024-06-20T08:07:25.876556793Z 28 │ padding: $form-grid-gutter / 2 2024-06-20T08:07:25.876558418Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:25.876560168Z ╵ 2024-06-20T08:07:25.876561627Z node_modules/vuetify/src/components/VGrid/VGrid.sass 28:16 root stylesheet 2024-06-20T08:07:25.876563168Z 2024-06-20T08:07:26.081272127Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:26.081312668Z 2024-06-20T08:07:26.100327043Z Warning: 4 repetitive deprecation warnings omitted. 2024-06-20T08:07:26.100363377Z 2024-06-20T08:07:26.371549502Z ⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:26.371596793Z 2024-06-20T08:07:26.371600377Z Recommendation: math.div($size, 2.25) or calc($size / 2.25) 2024-06-20T08:07:26.371602043Z 2024-06-20T08:07:26.371603543Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:26.371605043Z 2024-06-20T08:07:26.371617252Z ╷ 2024-06-20T08:07:26.371619085Z 83 │ padding: 0 #{$size / 2.25}px 2024-06-20T08:07:26.371632918Z │ ^^^^^^^^^^^^ 2024-06-20T08:07:26.371634668Z ╵ 2024-06-20T08:07:26.371636168Z node_modules/vuetify/src/components/VBtn/VBtn.sass 83:22 root stylesheet 2024-06-20T08:07:26.371637710Z 2024-06-20T08:07:26.377142002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:26.377159335Z 2024-06-20T08:07:26.377161502Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:26.377163210Z 2024-06-20T08:07:26.377164710Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:26.377166252Z 2024-06-20T08:07:26.377167668Z ╷ 2024-06-20T08:07:26.377169502Z 219 │ bottom: -#{$size / 2}px 2024-06-20T08:07:26.377182168Z │ ^^^^^^^^^ 2024-06-20T08:07:26.377184293Z ╵ 2024-06-20T08:07:26.377185835Z node_modules/vuetify/src/components/VBtn/VBtn.sass 219:22 root stylesheet 2024-06-20T08:07:26.377187335Z 2024-06-20T08:07:26.377545752Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:26.377552293Z 2024-06-20T08:07:26.377553877Z Recommendation: math.div($size, 2) or calc($size / 2) 2024-06-20T08:07:26.377555460Z 2024-06-20T08:07:26.377556918Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:26.377558502Z 2024-06-20T08:07:26.377559918Z ╷ 2024-06-20T08:07:26.377561502Z 222 │ top: -#{$size / 2}px 2024-06-20T08:07:26.377563085Z │ ^^^^^^^^^ 2024-06-20T08:07:26.377564627Z ╵ 2024-06-20T08:07:26.377566127Z node_modules/vuetify/src/components/VBtn/VBtn.sass 222:19 root stylesheet 2024-06-20T08:07:26.377567627Z 2024-06-20T08:07:27.559526044Z ⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.559561002Z 2024-06-20T08:07:27.559563461Z Recommendation: math.div(map-get($size, "height"), 2) or calc(map-get($size, "height") / 2) 2024-06-20T08:07:27.559565419Z 2024-06-20T08:07:27.559566919Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.559568711Z 2024-06-20T08:07:27.559570211Z ╷ 2024-06-20T08:07:27.559571752Z 202 │ border-radius: #{map-get($size, 'height') / 2}px 2024-06-20T08:07:27.559573502Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.559575127Z ╵ 2024-06-20T08:07:27.559576586Z node_modules/vuetify/src/components/VChip/VChip.sass 202:24 root stylesheet 2024-06-20T08:07:27.559578086Z 2024-06-20T08:07:27.904685419Z ⠙ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.904726919Z 2024-06-20T08:07:27.904729794Z Recommendation: math.div($dot-size, 2) or calc($dot-size / 2) 2024-06-20T08:07:27.904731377Z 2024-06-20T08:07:27.904732752Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.904734211Z 2024-06-20T08:07:27.904735544Z ╷ 2024-06-20T08:07:27.904736961Z 3 │ left: calc(50% - #{$dot-size / 2}) 2024-06-20T08:07:27.904738461Z │ ^^^^^^^^^^^^^ 2024-06-20T08:07:27.904739961Z ╵ 2024-06-20T08:07:27.904741377Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 3:22 timeline-dots() 2024-06-20T08:07:27.904742794Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:27.904744252Z 2024-06-20T08:07:27.905753002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.905763211Z 2024-06-20T08:07:27.905765127Z Recommendation: math.div($dot-size - $inner-dot-size, 2) or calc(($dot-size - $inner-dot-size) / 2) 2024-06-20T08:07:27.905766836Z 2024-06-20T08:07:27.905768461Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.905770294Z 2024-06-20T08:07:27.905771711Z ╷ 2024-06-20T08:07:27.905773336Z 8 │ margin: ($dot-size - $inner-dot-size) / 2 2024-06-20T08:07:27.905775044Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.905776627Z ╵ 2024-06-20T08:07:27.905778086Z node_modules/vuetify/src/components/VTimeline/_mixins.sass 8:13 timeline-dots() 2024-06-20T08:07:27.905779711Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 57:3 root stylesheet 2024-06-20T08:07:27.905781336Z 2024-06-20T08:07:27.911515919Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.911542836Z 2024-06-20T08:07:27.911545336Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:27.911547086Z 2024-06-20T08:07:27.911548586Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.911550127Z 2024-06-20T08:07:27.911551794Z ╷ 2024-06-20T08:07:27.911553919Z 74 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:27.911562586Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.911564294Z ╵ 2024-06-20T08:07:27.911565794Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 74:51 root stylesheet 2024-06-20T08:07:27.911567336Z 2024-06-20T08:07:27.914577002Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.914584711Z 2024-06-20T08:07:27.914586252Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:27.914588002Z 2024-06-20T08:07:27.914589461Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.914590961Z 2024-06-20T08:07:27.914592377Z ╷ 2024-06-20T08:07:27.914593961Z 83 │ max-width: calc(#{100% - $timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:27.914595669Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.914597461Z ╵ 2024-06-20T08:07:27.914599044Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 83:64 root stylesheet 2024-06-20T08:07:27.914600752Z 2024-06-20T08:07:27.918373086Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:27.918400002Z 2024-06-20T08:07:27.918402419Z Recommendation: math.div($timeline-divider-width, 2) or calc($timeline-divider-width / 2) 2024-06-20T08:07:27.918404086Z 2024-06-20T08:07:27.918405794Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:27.918407461Z 2024-06-20T08:07:27.918408877Z ╷ 2024-06-20T08:07:27.918410836Z 89 │ max-width: calc(#{$timeline-divider-center} - #{$timeline-divider-width / 2}) 2024-06-20T08:07:27.918412711Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:27.918414627Z ╵ 2024-06-20T08:07:27.918416086Z node_modules/vuetify/src/components/VTimeline/VTimeline.sass 89:57 root stylesheet 2024-06-20T08:07:27.918417669Z 2024-06-20T08:07:27.932371086Z Warning: 6 repetitive deprecation warnings omitted. 2024-06-20T08:07:27.932392502Z 2024-06-20T08:07:28.077699294Z ⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.077751211Z 2024-06-20T08:07:28.077754211Z Recommendation: math.div(-$slider-thumb-size, 2) or calc(-1 $slider-thumb-size / 2) 2024-06-20T08:07:28.077756211Z 2024-06-20T08:07:28.077757711Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.077759253Z 2024-06-20T08:07:28.077760669Z ╷ 2024-06-20T08:07:28.077762211Z 50 │ left: -$slider-thumb-size / 2 2024-06-20T08:07:28.077763878Z │ ^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.077765503Z ╵ 2024-06-20T08:07:28.077766961Z node_modules/vuetify/src/components/VSlider/VSlider.sass 50:9 root stylesheet 2024-06-20T08:07:28.077768503Z 2024-06-20T08:07:28.079100044Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.079139336Z 2024-06-20T08:07:28.079142086Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:28.079143919Z 2024-06-20T08:07:28.079145586Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.079147128Z 2024-06-20T08:07:28.079148586Z ╷ 2024-06-20T08:07:28.079150544Z 67 │ left: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:28.079152211Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.079153794Z ╵ 2024-06-20T08:07:28.079155253Z node_modules/vuetify/src/components/VSlider/VSlider.sass 67:11 root stylesheet 2024-06-20T08:07:28.079156794Z 2024-06-20T08:07:28.079573378Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.079593086Z 2024-06-20T08:07:28.079595211Z Recommendation: math.div(-$slider-thumb-focused-size-increase, 2) or calc(-1 $slider-thumb-focused-size-increase / 2) 2024-06-20T08:07:28.079597336Z 2024-06-20T08:07:28.079598753Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.079600253Z 2024-06-20T08:07:28.079601669Z ╷ 2024-06-20T08:07:28.079603253Z 68 │ top: -$slider-thumb-focused-size-increase / 2 2024-06-20T08:07:28.079604878Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.079638044Z ╵ 2024-06-20T08:07:28.079640086Z node_modules/vuetify/src/components/VSlider/VSlider.sass 68:10 root stylesheet 2024-06-20T08:07:28.079641711Z 2024-06-20T08:07:28.088118878Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:28.088179211Z 2024-06-20T08:07:28.088182128Z Recommendation: math.div(-($slider-thumb-size - 4), 2) or calc(-1 ($slider-thumb-size - 4) / 2) 2024-06-20T08:07:28.088183878Z 2024-06-20T08:07:28.088185669Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:28.088187253Z 2024-06-20T08:07:28.088188628Z ╷ 2024-06-20T08:07:28.088190836Z 254 │ left: -($slider-thumb-size - 4) / 2 2024-06-20T08:07:28.088192503Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:28.088194044Z ╵ 2024-06-20T08:07:28.088209294Z node_modules/vuetify/src/components/VSlider/VSlider.sass 254:11 root stylesheet 2024-06-20T08:07:28.088211378Z 2024-06-20T08:07:31.213472421Z ⠸ Building for production...⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.213498046Z 2024-06-20T08:07:31.213500587Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.213502254Z 2024-06-20T08:07:31.213503712Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.213505254Z 2024-06-20T08:07:31.213506671Z ╷ 2024-06-20T08:07:31.213508212Z 37 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.213509879Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.213511921Z ╵ 2024-06-20T08:07:31.213513421Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 37:22 @content 2024-06-20T08:07:31.213515004Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:31.213516546Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 36:7 root stylesheet 2024-06-20T08:07:31.213518087Z 2024-06-20T08:07:31.214065421Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.214087129Z 2024-06-20T08:07:31.214089671Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.214091504Z 2024-06-20T08:07:31.214093004Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.214094546Z 2024-06-20T08:07:31.214095962Z ╷ 2024-06-20T08:07:31.214097796Z 40 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.214099504Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.214101087Z ╵ 2024-06-20T08:07:31.214102546Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 40:23 @content 2024-06-20T08:07:31.214104504Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:31.214106087Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 39:7 root stylesheet 2024-06-20T08:07:31.214107671Z 2024-06-20T08:07:31.215261462Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.215274837Z 2024-06-20T08:07:31.215277087Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.215278754Z 2024-06-20T08:07:31.215280379Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.215281921Z 2024-06-20T08:07:31.215283337Z ╷ 2024-06-20T08:07:31.215285087Z 51 │ margin-right: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.215286754Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.215288379Z ╵ 2024-06-20T08:07:31.215289837Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 51:23 @content 2024-06-20T08:07:31.215291421Z node_modules/vuetify/src/styles/tools/_rtl.sass 7:5 ltr() 2024-06-20T08:07:31.215292962Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 50:7 root stylesheet 2024-06-20T08:07:31.215294504Z 2024-06-20T08:07:31.215748796Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.215761087Z 2024-06-20T08:07:31.215763046Z Recommendation: math.div(-$toolbar-btn-icon-size, 4) or calc(-1 $toolbar-btn-icon-size / 4) 2024-06-20T08:07:31.215764629Z 2024-06-20T08:07:31.215770629Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.215772296Z 2024-06-20T08:07:31.215773712Z ╷ 2024-06-20T08:07:31.215775337Z 54 │ margin-left: -$toolbar-btn-icon-size / 4 2024-06-20T08:07:31.215776921Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.215778546Z ╵ 2024-06-20T08:07:31.215780212Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 54:22 @content 2024-06-20T08:07:31.215781754Z node_modules/vuetify/src/styles/tools/_rtl.sass 3:5 rtl() 2024-06-20T08:07:31.215783296Z node_modules/vuetify/src/components/VToolbar/VToolbar.sass 53:7 root stylesheet 2024-06-20T08:07:31.215784879Z 2024-06-20T08:07:31.404574129Z ⠇ Building for production...⠏ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.404605962Z 2024-06-20T08:07:31.404608171Z Recommendation: math.div($switch-track-inset-height, 2) or calc($switch-track-inset-height / 2) 2024-06-20T08:07:31.404610004Z 2024-06-20T08:07:31.404611837Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.404613379Z 2024-06-20T08:07:31.404614796Z ╷ 2024-06-20T08:07:31.404616462Z 116 │ top: calc(50% - #{$switch-track-inset-height / 2}) 2024-06-20T08:07:31.404618171Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.404632962Z ╵ 2024-06-20T08:07:31.404635587Z node_modules/vuetify/src/components/VSwitch/VSwitch.sass 116:25 root stylesheet 2024-06-20T08:07:31.404637129Z 2024-06-20T08:07:31.883536796Z ⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:31.883565338Z 2024-06-20T08:07:31.883567921Z Recommendation: math.div($progress-linear-stream-border-width, 2) or calc($progress-linear-stream-border-width / 2) 2024-06-20T08:07:31.883569921Z 2024-06-20T08:07:31.883571379Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:31.883572963Z 2024-06-20T08:07:31.883574338Z ╷ 2024-06-20T08:07:31.883575879Z 113 │ top: calc(50% - #{$progress-linear-stream-border-width / 2}) 2024-06-20T08:07:31.883583629Z │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:31.883585463Z ╵ 2024-06-20T08:07:31.883586963Z node_modules/vuetify/src/components/VProgressLinear/VProgressLinear.sass 113:21 root stylesheet 2024-06-20T08:07:31.883588629Z 2024-06-20T08:07:33.326834172Z ⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.326876672Z 2024-06-20T08:07:33.326879380Z Recommendation: math.div(-$banner-y-padding, 2) or calc(-1 $banner-y-padding / 2) 2024-06-20T08:07:33.326881213Z 2024-06-20T08:07:33.326882672Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.326884255Z 2024-06-20T08:07:33.326885630Z ╷ 2024-06-20T08:07:33.326887130Z 26 │ margin-bottom: -$banner-y-padding / 2 2024-06-20T08:07:33.326888713Z │ ^^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.326890255Z ╵ 2024-06-20T08:07:33.326891713Z node_modules/vuetify/src/components/VBanner/VBanner.sass 26:18 root stylesheet 2024-06-20T08:07:33.326893172Z 2024-06-20T08:07:33.330778755Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.330809172Z 2024-06-20T08:07:33.330811672Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:33.330813422Z 2024-06-20T08:07:33.330814880Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.330816463Z 2024-06-20T08:07:33.330817922Z ╷ 2024-06-20T08:07:33.330819963Z 85 │ padding-top: $banner-y-padding / 2 2024-06-20T08:07:33.330821713Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.330823297Z ╵ 2024-06-20T08:07:33.330824797Z node_modules/vuetify/src/components/VBanner/VBanner.sass 85:18 root stylesheet 2024-06-20T08:07:33.330835797Z 2024-06-20T08:07:33.331127547Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.331138422Z 2024-06-20T08:07:33.331140463Z Recommendation: math.div($banner-y-padding, 2) or calc($banner-y-padding / 2) 2024-06-20T08:07:33.331142505Z 2024-06-20T08:07:33.331144047Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.331145547Z 2024-06-20T08:07:33.331147172Z ╷ 2024-06-20T08:07:33.331149213Z 86 │ padding-bottom: $banner-y-padding / 2 2024-06-20T08:07:33.331150838Z │ ^^^^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.331152422Z ╵ 2024-06-20T08:07:33.331153880Z node_modules/vuetify/src/components/VBanner/VBanner.sass 86:21 root stylesheet 2024-06-20T08:07:33.331155547Z 2024-06-20T08:07:33.428540463Z ⠸ Building for production...Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.428574963Z 2024-06-20T08:07:33.428577713Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:33.428579380Z 2024-06-20T08:07:33.428580922Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.428582838Z 2024-06-20T08:07:33.428584255Z ╷ 2024-06-20T08:07:33.428585838Z 141 │ padding-top: $alert-padding / 2 2024-06-20T08:07:33.428587463Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.428589130Z ╵ 2024-06-20T08:07:33.428590630Z node_modules/vuetify/src/components/VAlert/VAlert.sass 141:16 root stylesheet 2024-06-20T08:07:33.428592172Z 2024-06-20T08:07:33.428778880Z Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. 2024-06-20T08:07:33.428795172Z 2024-06-20T08:07:33.428797838Z Recommendation: math.div($alert-padding, 2) or calc($alert-padding / 2) 2024-06-20T08:07:33.428799505Z 2024-06-20T08:07:33.428801047Z More info and automated migrator: https://sass-lang.com/d/slash-div 2024-06-20T08:07:33.428802588Z 2024-06-20T08:07:33.428804047Z ╷ 2024-06-20T08:07:33.428805797Z 142 │ padding-bottom: $alert-padding / 2 2024-06-20T08:07:33.428807463Z │ ^^^^^^^^^^^^^^^^^^ 2024-06-20T08:07:33.428818380Z ╵ 2024-06-20T08:07:33.428819922Z node_modules/vuetify/src/components/VAlert/VAlert.sass 142:19 root stylesheet 2024-06-20T08:07:33.428821463Z 2024-06-20T08:07:36.667992340Z ⠼ Building for production...⠴ Building for production...⠦ Building for production...⠧ Building for production...⠇ Building for production...⠏ Building for production...⠋ Building for production...⠙ Building for production...⠹ Building for production...⠸ Building for production... 2024-06-20T08:07:36.675225798Z ERROR Failed to compile with 1 error 8:07:36 AM 2024-06-20T08:07:36.675348715Z 2024-06-20T08:07:36.675549173Z error in ./src/store/modules/main.js 2024-06-20T08:07:36.675618215Z 2024-06-20T08:07:36.675638215Z Module parse failed: Identifier directly after number (88:35) 2024-06-20T08:07:36.675640090Z File was processed with these loaders: 2024-06-20T08:07:36.675642173Z ./node_modules/cache-loader/dist/cjs.js 2024-06-20T08:07:36.675645673Z ./node_modules/thread-loader/dist/cjs.js 2024-06-20T08:07:36.675648090Z ./node_modules/babel-loader/lib/index.js 2024-06-20T08:07:36.675649507Z * ./node_modules/eslint-loader/index.js 2024-06-20T08:07:36.675651007Z You may need an additional loader to handle the result of these loaders. 2024-06-20T08:07:36.675652590Z | // see: https://www.chartjs.org/docs/latest/general/performance.html#decimation 2024-06-20T08:07:36.675654715Z | function roundedTimestamp(timestamp) { 2024-06-20T08:07:36.675656840Z > return timestamp - timestamp % 10_000; 2024-06-20T08:07:36.675658507Z | } 2024-06-20T08:07:36.675659965Z | export default { 2024-06-20T08:07:36.675664465Z 2024-06-20T08:07:36.675666215Z @ ./src/store/index.js 5:0-34 12:4-8 2024-06-20T08:07:36.675667757Z @ ./src/main.js 2024-06-20T08:07:36.675669215Z @ multi ./src/main.js 2024-06-20T08:07:36.675671507Z 2024-06-20T08:07:36.675975132Z ERROR Build failed with errors. 2024-06-20T08:07:36.732478298Z 但是运行后成这样了,这是什么原因呢

我知道原因了,需要将return timestamp - timestamp % 10_000;更改为return timestamp - timestamp % 10000;

kekekekekeshi commented 2 months ago

真是一波三折,thx4u