@goldstack/template-dynamodb-cli 0.4.5 → 0.4.6

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/bin/template +4 -7
  2. package/package.json +3 -2
package/bin/template CHANGED
@@ -3,10 +3,7 @@
3
3
  // eslint-disable-next-line @typescript-eslint/no-var-requires
4
4
  require('source-map-support').install();
5
5
 
6
- // eslint-disable-next-line @typescript-eslint/no-var-requires
7
- require('./../dist/src/templateDynamoDBCli')
8
- .run(process.argv)
9
- .catch((e) => {
10
- console.log(e);
11
- process.exit(1);
12
- });
6
+ console.log(
7
+ 'Template binary should not be invoked directly for DynamoDB template. Instead use scripts/template.ts.'
8
+ );
9
+ process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goldstack/template-dynamodb-cli",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Utilities for building modules for DynamoDB access.",
5
5
  "keywords": [
6
6
  "goldstack",
@@ -42,13 +42,14 @@
42
42
  "version:apply:force": "yarn version $@ && yarn version apply"
43
43
  },
44
44
  "dependencies": {
45
- "@goldstack/template-dynamodb": "0.1.14",
45
+ "@goldstack/template-dynamodb": "0.1.15",
46
46
  "@goldstack/utils-cli": "0.2.14",
47
47
  "@goldstack/utils-package": "0.3.39",
48
48
  "@goldstack/utils-package-config": "0.3.40",
49
49
  "@goldstack/utils-sh": "0.4.32",
50
50
  "@goldstack/utils-terraform": "0.3.69",
51
51
  "@goldstack/utils-terraform-aws": "0.3.68",
52
+ "source-map-support": "^0.5.21",
52
53
  "umzug": "^3.1.1",
53
54
  "yargs": "^15.4.1"
54
55
  },