@znemz/cft-utils 0.1.0 → 0.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@znemz/cft-utils",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "AWS CFT Utilities to fill the gaps for Cloud Formation",
5
5
  "keywords": [
6
6
  "cft",
@@ -37,10 +37,12 @@
37
37
  "unused:dependencies": "depcheck --ignore-bin-package --ignores @znemz/skip-npm-task,sort-package-json"
38
38
  },
39
39
  "dependencies": {
40
- "debug-fabulous": "2.0.2",
41
- "globby": "11.1.0"
40
+ "debug-fabulous": "2.0.8",
41
+ "glob": "11.0.0"
42
42
  },
43
43
  "devDependencies": {
44
+ "@commitlint/cli": "^19",
45
+ "@commitlint/config-conventional": "^19",
44
46
  "@znemz/skip-npm-task": "0.1.0",
45
47
  "aws-cdk-lib": "2",
46
48
  "commit-and-tag-version": "12",
@@ -1,6 +1,6 @@
1
1
  const path = require('path');
2
2
  const fs = require('fs/promises');
3
- const globby = require('globby');
3
+ const { glob } = require('glob');
4
4
 
5
5
  const cachePath = path.join(__dirname, '..', 'cache');
6
6
 
@@ -41,7 +41,7 @@ const getResourcesFromAwsCdk = async () => {
41
41
  path.join(cdkDir, 'aws-*', 'lib', '*generated.d.ts'),
42
42
  `!${path.join(cdkDir, 'aws-*', 'lib', 'index.d.ts')}`,
43
43
  ];
44
- const paths = await globby(globPaths);
44
+ const paths = await glob(globPaths);
45
45
  const nestedResourceNames = await Promise.all(
46
46
  paths.map((file) => fileToTaggableResourceNames(file))
47
47
  );