diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..eb1e6c02 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,36 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node +{ + "name": "Dashy", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye", + "customizations": { + "vscode": { + "extensions": [ + "Vue.volar", + "dbaeumer.vscode-eslint", + "ms-azuretools.vscode-docker", + "ms-edgedevtools.vscode-edge-devtools", + "firefox-devtools.vscode-firefox-debug", + "aaravb.chrome-extension-developer-tools" + ] + } + }, + + // Features to add to the dev container. More info: https://containers.dev/features. + "features": { + "ghcr.io/devcontainers/features/github-cli:1": {} + }, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "yarn install --ignore-engines --immutable --no-cache --network-timeout 300000 --network-concurrency 1" + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..f33a02cd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for more information: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# https://containers.dev/guide/dependabot + +version: 2 +updates: + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: weekly diff --git a/.gitignore b/.gitignore index a0dddc6f..07be5993 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,6 @@ yarn-error.log* # Editor directories and files .idea -.vscode *.suo *.ntvs* *.njsproj diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..516d39f7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,65 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "msedge", + "request": "launch", + "name": "dashy: edge", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}", + "breakOnLoad": true, + "pathMapping": { + "/_karma_webpack_": "${workspaceFolder}" + }, + "sourceMapPathOverrides": { + "webpack:/*": "${webRoot}/*", + "/./*": "${webRoot}/*", + "/src/*": "${webRoot}/*", + "/*": "*", + "/./~/*": "${webRoot}/node_modules/*" + }, + "preLaunchTask": "dashy start" + }, + { + "type": "chrome", + "request": "launch", + "name": "dashy: chrome", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}", + "breakOnLoad": true, + "pathMapping": { + "/_karma_webpack_": "${workspaceFolder}" + }, + "sourceMapPathOverrides": { + "webpack:/*": "${webRoot}/*", + "/./*": "${webRoot}/*", + "/src/*": "${webRoot}/*", + "/*": "*", + "/./~/*": "${webRoot}/node_modules/*" + }, + "preLaunchTask": "dashy start" + }, + { + "type": "firefox", + "request": "launch", + "name": "dashy: firefox", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}", + "breakOnLoad": true, + "pathMapping": { + "/_karma_webpack_": "${workspaceFolder}" + }, + "sourceMapPathOverrides": { + "webpack:/*": "${webRoot}/*", + "/./*": "${webRoot}/*", + "/src/*": "${webRoot}/*", + "/*": "*", + "/./~/*": "${webRoot}/node_modules/*" + }, + "preLaunchTask": "dashy start" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..806fbd16 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,21 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "dashy start", + "type": "npm", + "script": "dev", + "isBackground": true, + "problemMatcher": [ + { + "base": "$tsc-watch", + "background": { + "activeOnStart": true, + "beginsPattern": "Starting development server", + "endsPattern": "Compiled successfully" + } + } + ], + } + ] +} \ No newline at end of file diff --git a/vue.config.js b/vue.config.js index b18edf10..0e4df226 100644 --- a/vue.config.js +++ b/vue.config.js @@ -49,6 +49,7 @@ const plugins = !isServer ? [ // Webpack Config const configureWebpack = { + devtool: 'source-map', mode, plugins, module: {