snapfail 0.0.10 → 0.0.11
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/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { join, resolve, basename } from "path";
|
|
|
6
6
|
import { existsSync, readFileSync, writeFileSync } from "fs";
|
|
7
7
|
import { createServer } from "http";
|
|
8
8
|
import { spawn, execSync } from "child_process";
|
|
9
|
-
var VERSION = "0.0.
|
|
9
|
+
var VERSION = "0.0.11";
|
|
10
10
|
var APP_URL = process.env["SNAPFAIL_APP_URL"] ?? "https://app.snapfail.com";
|
|
11
11
|
var AUTH_TIMEOUT_MS = 5 * 60 * 1000;
|
|
12
12
|
var c = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snapfail",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "CLI to initialise SnapFail error-tracking in Vite & Astro projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "bun build ./src/index.ts --outfile ./dist/index.js --target=node --sourcemap=none && bunx tsc --project tsconfig.json --declaration --emitDeclarationOnly --outDir dist --noEmit false",
|
|
17
|
-
"dev":
|
|
17
|
+
"dev": "bun --watch ./src/index.ts"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=18"
|