@dboio/cli 0.11.1 → 0.11.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": "@dboio/cli",
3
- "version": "0.11.1",
3
+ "version": "0.11.2",
4
4
  "description": "CLI for the DBO.io framework",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,15 +15,10 @@ export const BINS_DIR = 'lib/bins';
15
15
  */
16
16
  export const SCAFFOLD_DIRS = [
17
17
  'lib/bins',
18
- 'lib/automation',
19
18
  'lib/app_version',
20
19
  'lib/entity',
21
- 'lib/entity_column',
22
- 'lib/entity_column_value',
23
20
  'lib/extension',
24
- 'lib/integration',
25
21
  'lib/security',
26
- 'lib/security_column',
27
22
  'src',
28
23
  'test',
29
24
  'trash',
@@ -36,10 +31,15 @@ export const SCAFFOLD_DIRS = [
36
31
  * These are NOT created by scaffold — only by processEntityDirEntries().
37
32
  */
38
33
  export const ON_DEMAND_ENTITY_DIRS = new Set([
34
+ 'automation',
39
35
  'data_source',
36
+ 'entity_column',
37
+ 'entity_column_value',
40
38
  'group',
41
- 'site',
39
+ 'integration',
42
40
  'redirect',
41
+ 'security_column',
42
+ 'site',
43
43
  ]);
44
44
 
45
45
  /**