Skip to content

Commit

Permalink
fix(entry): prepare entry for vite and webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
ThornWalli committed Apr 23, 2023
1 parent 5632c68 commit 04ee52e
Show file tree
Hide file tree
Showing 49 changed files with 1,819 additions and 525 deletions.
1 change: 0 additions & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
defaults
not IE 11
maintained node versions
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
},
"extends": [
"@nuxtjs",
"@nuxtjs/eslint-config-typescript",
"plugin:security/recommended",
"plugin:sonarjs/recommended",
"plugin:no-unsanitized/DOM"
Expand Down Expand Up @@ -40,6 +39,7 @@
}
],
"sonarjs/no-duplicate-string": 0,
"vue/multi-word-component-names": "off"
"vue/multi-word-component-names": "off",
"@typescript-eslint/no-unused-vars": "off"
}
}
110 changes: 97 additions & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,51 +4,135 @@
{
"type": "node",
"request": "launch",
"name": "Debug (generate)",
"runtimeVersion": "16.19.0",
"name": "Express-Server (dist)",
"runtimeVersion": "16.14.2",
"program": "${workspaceFolder}/tools/express-server",
"outputCapture": "std",
"args": [
"--dist",
"dist/nuxt-custom-elements"
]
},
{
"type": "node",
"request": "launch",
"name": "Express-Server (build/dist)",
"runtimeVersion": "16.14.2",
"program": "${workspaceFolder}/tools/express-server",
"outputCapture": "std",
"args": [
"--dist",
"playground/.nuxt/nuxt-custom-elements/dist"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug (nuxi:generate)",
"runtimeVersion": "19.5.0",
"runtimeArgs": [
"--inspect"
],
"program": "${workspaceFolder}/node_modules/.bin/nuxi",
"outputCapture": "std",
"args": [
"generate",
"playground",
"--target",
"static"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug (nuxi:build)",
"runtimeVersion": "19.5.0",
"runtimeArgs": [
"--inspect"
],
"program": "${workspaceFolder}/node_modules/.bin/nuxi",
"outputCapture": "std",
"args": [
"build",
"playground"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug (nuxi:dev)",
"runtimeVersion": "19.5.0",
"runtimeArgs": [
"--inspect"
],
"program": "${workspaceFolder}/node_modules/.bin/nuxi",
"outputCapture": "std",
"args": [
"dev",
"playground"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug (nuxt:generate)",
"runtimeVersion": "19.5.0",
"runtimeArgs": [
"--inspect"
],
"program": "${workspaceFolder}/node_modules/.bin/nuxt",
"outputCapture": "std",
"args": [
"generate",
"--config-file",
"playground/nuxt.config.js",
"playground",
"--target",
"static"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug (build)",
"runtimeVersion": "16.19.0",
"name": "Debug (nuxt:build)",
"runtimeVersion": "19.5.0",
"runtimeArgs": [
"--inspect"
],
"program": "${workspaceFolder}/node_modules/.bin/nuxt",
"outputCapture": "std",
"args": [
"build",
"--config-file",
"playground/nuxt.config.js"
"playground"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug (nuxt)",
"runtimeVersion": "16.19.0",
"name": "Debug (nuxt:dev)",
"runtimeVersion": "19.5.0",
"runtimeArgs": [
"--inspect"
],
"program": "${workspaceFolder}/node_modules/.bin/nuxt",
"outputCapture": "std",
"args": [
"--config-file",
"playground/nuxt.config.js"
"dev",
"playground"
]
}
},
{
"type": "node",
"request": "launch",
"name": "Debug (nuxi:prepare)",
"runtimeVersion": "19.5.0",
"runtimeArgs": [
"--inspect"
],
"program": "${workspaceFolder}/node_modules/.bin/nuxt",
"outputCapture": "std",
"args": [
"prepare",
"playground"
]
},
]
}
2 changes: 1 addition & 1 deletion jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"baseUrl": ".",
"paths": {
"nuxt-speedkit/*": [
"src/runtime/*"
"src/*"
],
"#speedkit": [
"src/runtime/*"
Expand Down
Loading

0 comments on commit 04ee52e

Please sign in to comment.