@cerema/cadriciel 1.6.4 → 1.6.5

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/cli.js +7 -0
  2. package/package.json +3 -2
package/cli.js CHANGED
@@ -476,6 +476,13 @@ const ExecCommand = (p, args) => {
476
476
  cadriciel: path.normalize(CADRICIEL_PATH + '/..'),
477
477
  root: path.normalize(CADRICIEL_PATH + '/../..'),
478
478
  },
479
+ deps: {
480
+ chalk: chalk,
481
+ ora: require('ora'),
482
+ prompts: require('prompts'),
483
+ pg: require('pg'),
484
+ dotenv: require('dotenv'),
485
+ },
479
486
  };
480
487
  unit(args, params);
481
488
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerema/cadriciel",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "npm": ">=8.0.0",
@@ -28,6 +28,7 @@
28
28
  "mkdirp": "^3.0.1",
29
29
  "nanoid": "^3.0.0",
30
30
  "ora": "^5.4.1",
31
+ "pg": "^8.13.1",
31
32
  "prompts": "^2.4.2",
32
33
  "recursive-readdir": "^2.2.3",
33
34
  "semver": "^7.5.4",
@@ -36,4 +37,4 @@
36
37
  "yaml": "^2.8.2",
37
38
  "yauzl": "^3.1.3"
38
39
  }
39
- }
40
+ }