Skip to content

Commit

Permalink
add new features, bun, global run
Browse files Browse the repository at this point in the history
  • Loading branch information
blefnk committed Sep 24, 2024
1 parent 86555d4 commit b7019a2
Show file tree
Hide file tree
Showing 45 changed files with 5,948 additions and 7,335 deletions.
23 changes: 23 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"recommendations": [
"aaron-bond.better-comments",
"astro-build.houston",
"biomejs.biome",
"bradlc.vscode-tailwindcss",
"charliermarsh.ruff",
"chunsen.bracket-select",
"davidanson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"fabiospampinato.vscode-open-multiple-files",
"github.github-vscode-theme",
"lokalise.i18n-ally",
"mikekscholz.pop-icon-theme",
"ms-python.python",
"neptunedesign.vs-sequential-number",
"streetsidesoftware.code-spell-checker",
"unifiedjs.vscode-mdx",
"usernamehw.errorlens",
"usernamehw.remove-empty-lines",
"yzhang.markdown-all-in-one"
]
}
74 changes: 74 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"compounds": [
{
"configurations": ["Launch Next.js"],
"name": "Launch Next.js"
},
{
"configurations": ["Launch Next.js", "Launch Next.js in Chrome"],
"name": "Launch Next.js and Chrome"
}
],
"configurations": [
{
"name": "Attach by Process ID",
"processId": "${command:PickProcess}",
"request": "attach",
"restart": true,
"type": "node"
},
{
"console": "internalConsole",
"env": {
"NODE_OPTIONS": "--inspect"
},
"name": "Launch Next.js",
"program": "${workspaceFolder}/node_modules/next/dist/bin/next",
"request": "launch",
"sourceMaps": true,
"trace": true,
"type": "node"
},
{
"name": "Launch Next.js in Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
"args": ["--runInBand"],
"envFile": "${workspaceFolder}/.env",
"name": "Launch All Jest Tests",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"request": "launch",
"type": "node"
},
{
"args": ["${relativeFile}"],
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart",
"name": "Launch Current Jest Test",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"request": "launch",
"type": "node"
},
{
"console": "integratedTerminal",
"env": {
"NODE_OPTIONS": "--loader=tsx"
},
"name": "Launch Ava Test (experimental)",
"outputCapture": "std",
"program": "${workspaceFolder}/node_modules/ava/entrypoints/cli.js",
"request": "launch",
"runtimeArgs": ["${file}", "--break", "debug"],
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ava",
"runtimeVersion": "20.10.0",
"skipFiles": ["<node_internals>/**/*.js"],
"type": "node"
}
],
"type": "commonjs",
"version": "0.2.0"
}
Loading

0 comments on commit b7019a2

Please sign in to comment.