two-stroke 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/deploy.mjs +1 -1
- package/package.json +1 -1
package/bin/deploy.mjs
CHANGED
|
@@ -21,5 +21,5 @@ await cmd(
|
|
|
21
21
|
await cmd(`wrangler deploy --env ${env} --outdir dist`);
|
|
22
22
|
|
|
23
23
|
await cmd(
|
|
24
|
-
`sentry-cli sourcemaps --org change-engine --project
|
|
24
|
+
`sentry-cli sourcemaps --org change-engine --project ${basename(process.cwd())} upload --release="${release}" dist`,
|
|
25
25
|
);
|