plum-e2e 1.0.7 → 1.0.8

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.
@@ -5,7 +5,8 @@
5
5
  "Bash(git add:*)",
6
6
  "Bash(git commit -m ':*)",
7
7
  "Bash(git push:*)",
8
- "Bash(gh pr:*)"
8
+ "Bash(gh pr:*)",
9
+ "Bash(node:*)"
9
10
  ]
10
11
  }
11
12
  }
package/bin/plum.js CHANGED
@@ -116,12 +116,16 @@ switch (command) {
116
116
  // Convert Windows paths to safe format
117
117
  const userTestsAbs = path.resolve(process.cwd(), 'tests').replace(/\\/g, '/');
118
118
  const userModulesAbs = path.resolve(process.cwd(), 'node_modules').replace(/\\/g, '/');
119
+ const userReportsAbs = path.resolve(process.cwd(), 'reports').replace(/\\/g, '/');
120
+ const plumConfigAbs = path.join(plumRoot, 'backend', 'config').replace(/\\/g, '/');
119
121
 
120
122
  // Generate docker-compose.override.yml
121
123
  const overrideYAML = [
122
124
  'services:',
123
125
  ' backend:',
124
126
  ' volumes:',
127
+ ` - "${userReportsAbs}:/app/reports"`,
128
+ ` - "${plumConfigAbs}:/app/config"`,
125
129
  ` - "${userTestsAbs}:/app/tests"`,
126
130
  ` - "${userModulesAbs}:/app/tests/node_modules"`
127
131
  ].join('\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plum-e2e",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/silverlunah/plum.git"