@travetto/pack 5.0.0-rc.15 → 5.0.0-rc.16
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/package.json +1 -1
- package/src/config-util.ts +1 -1
package/package.json
CHANGED
package/src/config-util.ts
CHANGED
|
@@ -117,7 +117,6 @@ export class PackConfigUtil {
|
|
|
117
117
|
this.dockerPorts(cfg),
|
|
118
118
|
this.dockerUser(cfg),
|
|
119
119
|
this.dockerPackageInstall(cfg),
|
|
120
|
-
this.dockerNodePackageInstall(cfg),
|
|
121
120
|
this.dockerAppFolder(cfg),
|
|
122
121
|
this.dockerAppFiles(cfg),
|
|
123
122
|
this.dockerEnvVars(cfg),
|
|
@@ -131,6 +130,7 @@ export class PackConfigUtil {
|
|
|
131
130
|
return [
|
|
132
131
|
this.dockerInit(cfg),
|
|
133
132
|
this.dockerWorkspace(cfg),
|
|
133
|
+
this.dockerNodePackageInstall(cfg),
|
|
134
134
|
this.dockerEntrypoint(cfg)
|
|
135
135
|
].join('\n');
|
|
136
136
|
}
|