@create-node-app/core 0.3.14 → 0.3.15
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -7807,7 +7807,7 @@ var run = async ({
|
|
|
7807
7807
|
const packageJson = JSON.parse(
|
|
7808
7808
|
import_fs5.default.readFileSync(`${root}/package.json`, "utf8")
|
|
7809
7809
|
);
|
|
7810
|
-
const lookForScripts = ["sls:offline", "dev", "start"];
|
|
7810
|
+
const lookForScripts = ["compose:up", "sls:offline", "dev", "start"];
|
|
7811
7811
|
for (const script of lookForScripts) {
|
|
7812
7812
|
if (packageJson.scripts && packageJson.scripts[script]) {
|
|
7813
7813
|
console.log(import_chalk3.default.cyan(` ${runCommand} ${script}`));
|
package/dist/index.mjs
CHANGED
|
@@ -7800,7 +7800,7 @@ var run = async ({
|
|
|
7800
7800
|
const packageJson = JSON.parse(
|
|
7801
7801
|
fs4.readFileSync(`${root}/package.json`, "utf8")
|
|
7802
7802
|
);
|
|
7803
|
-
const lookForScripts = ["sls:offline", "dev", "start"];
|
|
7803
|
+
const lookForScripts = ["compose:up", "sls:offline", "dev", "start"];
|
|
7804
7804
|
for (const script of lookForScripts) {
|
|
7805
7805
|
if (packageJson.scripts && packageJson.scripts[script]) {
|
|
7806
7806
|
console.log(chalk3.cyan(` ${runCommand} ${script}`));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@create-node-app/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.15",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"envinfo": "^7.10.0",
|
|
45
45
|
"lodash.merge": "^4.6.2",
|
|
46
46
|
"readdirp": "^3.4.0",
|
|
47
|
-
"semver": "^5.
|
|
47
|
+
"semver": "^7.5.2",
|
|
48
48
|
"tsup": "^6.2.3",
|
|
49
49
|
"underscore": "^1.10.2"
|
|
50
50
|
}
|