@faable/faable 1.3.10 → 1.3.11
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.
|
@@ -92,10 +92,10 @@ class ConfigurationHelper {
|
|
|
92
92
|
cache: manager,
|
|
93
93
|
},
|
|
94
94
|
},
|
|
95
|
-
...(manager == "npm"
|
|
96
|
-
...(manager == "yarn"
|
|
97
|
-
{ run: "yarn install --frozen-lockfile" }
|
|
98
|
-
|
|
95
|
+
...(manager == "npm" ? [{ run: "npm ci" }] : []),
|
|
96
|
+
...(manager == "yarn"
|
|
97
|
+
? [{ run: "yarn install --frozen-lockfile" }]
|
|
98
|
+
: []),
|
|
99
99
|
{
|
|
100
100
|
name: "Deploy to Faable",
|
|
101
101
|
run: `faable deploy ${app_name}`,
|
package/package.json
CHANGED