cursorless/.vscode/tasks.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.3 KiB
JSON
Raw Normal View History

2021-02-14 18:23:21 +03:00
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
2021-05-12 12:53:00 +03:00
{
"label": "Build",
"dependsOn": ["ESBuild", "TSBuild"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ESBuild",
"type": "npm",
"script": "esbuild",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": "build"
},
{
"label": "TSBuild",
"type": "npm",
"script": "compile",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": "build"
},
2021-02-14 18:23:21 +03:00
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
2021-05-12 12:53:00 +03:00
"group": "build"
Add landing page (#857) * nx g @nrwl/next:app cursorless-org * Attempt to get things working * Remove cypress for now * Add --prod flag * Try again * Another fix * Remove website-root/index.html * Use static export * Another attempt * whoops * another * Some style tweaks * Add inconsolata * Working iPhone 13 * Desktop version * Fix dark * Cleanup cheatsheet defaults updater support * Basic working mobile * More tweaks * Working desktop * Center hats * Initial working embedded video * Add related videos opt * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Add cursorless.org client-side launch config * Switch to react-player; better error handling * Working mobile layout * Move hats component * Add player controls * Use video placeholder * Revert "Use video placeholder" This reverts commit 40f45286ed15c77f0c78909e726f2cf80cd02ee9. * Bunch of tweaks from jam sesh * More jam sesh tweaks * Working mobile; some desktop tweaks * Working draft of desktop * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Tweak media breakpoints * Fix isExternal * Fix button background for light mode * Docusaurus respect system color scheme * Some design tweaks * Font tweaking * More messing around * Working mobile * Work toward proportional layout * Workign resize code * Start of screen stuff * Get layout working at more sizes * Fix background color on mobile * Attempt to fix iPhone landscape * Remove video placeholder * Add doc comment * Start adding meta tags * More styling tweaks * Add button hover * Fix favicon * Attempt to fix social tags * Hack to use deploy preview URL * Revert "Hack to use deploy preview URL" This reverts commit d0251e74d90f52ceafe46bd93924311cc11c116f. * Fix social embed * Hack deploy preview URL again * Revert "Hack deploy preview URL again" This reverts commit 6acb1326ae7265475f734d8687257d2143c8b0a6. * Tweak share * Hack url * Revert "Hack url" This reverts commit 77c109d5211918a8ca9f8851232dcce9bb528d6f. * Cleanup from looking through PR * More cleanup * whoops * bump package-lock * Fix order of fonts * Add regular font weight * Revert cheatsheet * Kick CI * Update cursorless-nx/apps/cursorless-org/pages/_app.tsx Co-authored-by: David Vo <auscompgeek@users.noreply.github.com> * Tweaks * Tweaks * website/ => docs-site/ * Lots of tweaks * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Attempt to fix docs build Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: David Vo <auscompgeek@users.noreply.github.com>
2022-09-15 18:31:10 +03:00
},
{
"label": "Serve cursorless.org",
"type": "shell",
"command": "nx serve cursorless-org",
"options": {
"cwd": "cursorless-nx"
},
"problemMatcher": []
},
{
"label": "Install local",
"type": "shell",
"command": "vsce package -o bundle.vsix && code --install-extension bundle.vsix",
"presentation": {
"focus": true
},
"problemMatcher": []
},
{
"label": "Run pre commit",
"type": "shell",
"command": "pre-commit run",
"presentation": {}
2021-02-14 18:23:21 +03:00
}
]
2021-05-12 12:53:00 +03:00
}