flakiness 0.182.0 → 0.184.0
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/lib/cli/cli.js +5 -4
- package/package.json +3 -3
- package/types/tsconfig.tsbuildinfo +1 -1
package/lib/cli/cli.js
CHANGED
|
@@ -979,15 +979,15 @@ import path6 from "path";
|
|
|
979
979
|
// ../package.json
|
|
980
980
|
var package_default = {
|
|
981
981
|
name: "flakiness",
|
|
982
|
-
version: "0.
|
|
982
|
+
version: "0.184.0",
|
|
983
983
|
type: "module",
|
|
984
984
|
private: true,
|
|
985
985
|
scripts: {
|
|
986
986
|
minor: "./version.mjs minor",
|
|
987
987
|
patch: "./version.mjs patch",
|
|
988
|
-
dev: "pnpm kubik --env-file=.env.dev -w $(find . -name build.mts) ./app.mts ./
|
|
989
|
-
"dev+billing": "pnpm kubik --env-file=.env.dev+billing -w $(find . -name build.mts) ./app.mts ./
|
|
990
|
-
prod: "pnpm kubik --env-file=.env.prodlocal -w ./cli/build.mts ./server.mts ./web/build.mts ./experimental/build.mts ./landing/build.mts",
|
|
988
|
+
dev: "pnpm kubik --env-file=.env.dev -w $(find . -name build.mts) ./app.mts ./github_webhooks.mts",
|
|
989
|
+
"dev+billing": "pnpm kubik --env-file=.env.dev+billing -w $(find . -name build.mts) ./app.mts ./stripe_webhooks.mts ./github_webhooks.mts",
|
|
990
|
+
prod: "pnpm kubik --env-file=.env.prodlocal -w ./cli/build.mts ./server.mts ./web/build.mts ./experimental/build.mts ./landing/build.mts ./github_webhooks.mts",
|
|
991
991
|
build: "pnpm kubik $(find . -name build.mts)",
|
|
992
992
|
perf: "node --max-old-space-size=10240 --enable-source-maps --env-file=.env.prodlocal experimental/lib/perf_filter.js"
|
|
993
993
|
},
|
|
@@ -1003,6 +1003,7 @@ var package_default = {
|
|
|
1003
1003
|
esbuild: "^0.27.2",
|
|
1004
1004
|
glob: "catalog:",
|
|
1005
1005
|
kubik: "^0.24.0",
|
|
1006
|
+
"smee-client": "^5.0.0",
|
|
1006
1007
|
tsx: "^4.21.0",
|
|
1007
1008
|
typescript: "^5.9.3"
|
|
1008
1009
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flakiness",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.184.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"flakiness": "./lib/cli/cli.js"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@playwright/test": "^1.57.0",
|
|
23
23
|
"@types/debug": "^4.1.12",
|
|
24
24
|
"@types/express": "^4.17.20",
|
|
25
|
-
"@flakiness/
|
|
26
|
-
"@flakiness/
|
|
25
|
+
"@flakiness/shared": "0.184.0",
|
|
26
|
+
"@flakiness/server": "0.184.0"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@flakiness/flakiness-report": "^0.22.0",
|