@create-node-app/core 0.3.14 → 0.3.17

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 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.14",
3
+ "version": "0.3.17",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -23,28 +23,29 @@
23
23
  "devDependencies": {
24
24
  "@create-node-app/eslint-config-ts": "*",
25
25
  "@types/cross-spawn": "^6.0.2",
26
- "@types/debug": "^4.1.7",
26
+ "@types/debug": "^4.1.12",
27
27
  "@types/download": "^8.0.2",
28
- "@types/envinfo": "^7.8.1",
28
+ "@types/envinfo": "^7.8.3",
29
29
  "@types/fs-extra": "^11.0.2",
30
30
  "@types/lodash.merge": "^4.6.9",
31
31
  "@types/node": "^18.14.6",
32
32
  "@types/underscore": "^1.11.4",
33
- "eslint": "^7.32.0",
33
+ "eslint": "^7.23.0",
34
+ "eslint-config-turbo": "^0.0.4",
35
+ "eslint-plugin-turbo": "^0.0.4",
34
36
  "simple-git": "^3.22.0",
35
37
  "tsconfig": "*",
36
38
  "typescript": "^4.5.2"
37
39
  },
38
40
  "dependencies": {
39
41
  "chalk": "^4.1.0",
40
- "commander": "^7.0.0",
41
42
  "cross-spawn": "^6.0.5",
42
43
  "debug": "^4.2.0",
43
44
  "download": "^3.3.0",
44
- "envinfo": "^7.10.0",
45
+ "envinfo": "^7.11.1",
45
46
  "lodash.merge": "^4.6.2",
46
47
  "readdirp": "^3.4.0",
47
- "semver": "^5.7.2",
48
+ "semver": "^7.5.2",
48
49
  "tsup": "^6.2.3",
49
50
  "underscore": "^1.10.2"
50
51
  }