plum-e2e 2.8.3 → 2.8.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.
@@ -7,7 +7,7 @@
7
7
  "": {
8
8
  "name": "plum-backend",
9
9
  "version": "1.3.3",
10
- "license": "ISC",
10
+ "license": "MIT",
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-s3": "^3.840.0",
13
13
  "@clack/prompts": "^1.5.1",
@@ -24,11 +24,11 @@
24
24
  "jsonwebtoken": "^9.0.2",
25
25
  "node-cron": "^3.0.3",
26
26
  "picocolors": "^1.1.1",
27
- "playwright": "^1.50.1",
27
+ "playwright": "1.50.1",
28
28
  "socket.io": "^4.8.1"
29
29
  },
30
30
  "devDependencies": {
31
- "@playwright/test": "^1.50.1",
31
+ "@playwright/test": "1.50.1",
32
32
  "@types/node": "^22.17.0",
33
33
  "cross-env": "^7.0.3",
34
34
  "prisma": "^6.19.3",
@@ -14,7 +14,7 @@
14
14
  "author": "silverlunah",
15
15
  "license": "MIT",
16
16
  "devDependencies": {
17
- "@playwright/test": "^1.50.1",
17
+ "@playwright/test": "1.50.1",
18
18
  "@types/node": "^22.17.0",
19
19
  "cross-env": "^7.0.3",
20
20
  "prisma": "^6.19.3",
package/bin/plum.js CHANGED
@@ -711,7 +711,12 @@ async function nodeStart({ reconfig }) {
711
711
  prepareEnv();
712
712
  clack.log.success('Environment ready.');
713
713
  } catch (e) {
714
- clack.log.warn(`Environment prep failed: ${e.message}`);
714
+ clack.log.error(
715
+ `Environment prep failed: ${e.message}\nNot starting the node — it would come up "running" but fail every dispatched test at the browser-launch step.`
716
+ );
717
+ clack.outro(pc.red('Node not started.'));
718
+ process.exitCode = 1;
719
+ return;
715
720
  }
716
721
 
717
722
  if (registeredId) {
@@ -760,7 +765,12 @@ async function nodeRestart() {
760
765
  try {
761
766
  prepareEnv();
762
767
  } catch (e) {
763
- clack.log.warn(`Dependency refresh failed: ${e.message}`);
768
+ clack.log.error(
769
+ `Dependency refresh failed: ${e.message}\nNot restarting the node — it would come up "running" but fail every dispatched test at the browser-launch step. The node stays stopped until this is fixed and \`plum node restart\` is run again.`
770
+ );
771
+ clack.outro(pc.red('Node not restarted.'));
772
+ process.exitCode = 1;
773
+ return;
764
774
  }
765
775
 
766
776
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plum-e2e",
3
- "version": "2.8.3",
3
+ "version": "2.8.5",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/silverlunah/plum.git"