@freestyle-sh/with-dev-server 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ const createSnapshotSpec = (templateRepo, workdir) => {
10
10
  repos: [
11
11
  {
12
12
  repo: templateRepo,
13
- path: "/repo"
13
+ path: workdir
14
14
  }
15
15
  ]
16
16
  },
@@ -135,7 +135,7 @@ class VmDevServerInstance extends VmWithInstance {
135
135
  class VmDevServer extends VmWith {
136
136
  templateRepo;
137
137
  repo;
138
- workdir = "/repo";
138
+ workdir;
139
139
  createInstance() {
140
140
  return new VmDevServerInstance({
141
141
  workdir: this.workdir
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@freestyle-sh/with-dev-server",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "freestyle-sandboxes": "^0.1.24",
7
- "@freestyle-sh/with-nodejs": "^0.2.4"
7
+ "@freestyle-sh/with-nodejs": "^0.2.5"
8
8
  },
9
9
  "type": "module",
10
10
  "main": "./dist/index.js",