summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-10-02 22:35:42 -0700
committerMatthew Miller <matthew@millerti.me>2023-10-02 22:35:42 -0700
commitc0b67b0c4dabd5f717d3c41d15a64028dd5c5e9c (patch)
tree5c6bea1f66f529a38ae5e7d11a03f2622fb6f357
parentfc17d1a4c91fda50ddb07693d3aea09d74cdc3c7 (diff)
Update build tasks to use pnpm
-rw-r--r--.vscode/tasks.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index a574914..10393ac 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -9,8 +9,8 @@
"isDefault": true
},
"problemMatcher": [],
- "label": "npm: build:server",
- "detail": "lerna bootstrap --scope=@simplewebauthn/server"
+ "label": "pnpm: build:server",
+ "detail": "pnpm run build:server"
},
{
"type": "npm",
@@ -20,8 +20,8 @@
"isDefault": true
},
"problemMatcher": [],
- "label": "npm: build:browser",
- "detail": "lerna bootstrap --scope=@simplewebauthn/browser"
+ "label": "pnpm: build:browser",
+ "detail": "pnpm run build:browser"
}
]
}