@neurodevs/meta-node 0.19.16 → 0.19.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.
@@ -1,59 +1,54 @@
1
1
  {
2
- "version": "0.2.0",
3
- "configurations": [
4
- {
5
- "type": "node",
6
- "request": "attach",
7
- "name": "attach.tests",
8
- "port": 5200,
9
- "restart": true,
10
- "timeout": 10000
11
- },
12
- {
13
- "type": "node",
14
- "request": "launch",
15
- "name": "test.file",
16
- "runtimeExecutable": "node",
17
- "runtimeArgs": [
18
- "--inspect-brk",
19
- "--trace-warnings",
20
- "--experimental-vm-modules",
21
- "${workspaceFolder}/node_modules/.bin/jest",
22
- "${fileBasenameNoExtension}",
23
- "--detectOpenHandles"
24
- ],
25
- "cwd": "${workspaceFolder}",
26
- "console": "integratedTerminal",
27
- "internalConsoleOptions": "neverOpen"
28
- },
29
- {
30
- "type": "node",
31
- "request": "launch",
32
- "name": "test.all",
33
- "runtimeExecutable": "node",
34
- "runtimeArgs": [
35
- "--inspect-brk",
36
- "--trace-warnings",
37
- "${workspaceFolder}/node_modules/.bin/jest"
38
- ],
39
- "cwd": "${workspaceFolder}",
40
- "console": "integratedTerminal",
41
- "internalConsoleOptions": "neverOpen"
42
- },
43
- {
44
- "type": "node",
45
- "request": "launch",
46
- "name": "boot",
47
- "runtimeExecutable": "yarn",
48
- "runtimeArgs": [
49
- "run",
50
- "--inspect-brk",
51
- "--trace-warnings",
52
- "boot"
53
- ],
54
- "cwd": "${workspaceFolder}",
55
- "console": "integratedTerminal",
56
- "internalConsoleOptions": "neverOpen"
57
- }
58
- ]
59
- }
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "attach",
7
+ "name": "attach.tests",
8
+ "port": 5200,
9
+ "restart": true,
10
+ "timeout": 10000
11
+ },
12
+ {
13
+ "type": "node",
14
+ "request": "launch",
15
+ "name": "test.file",
16
+ "runtimeExecutable": "node",
17
+ "runtimeArgs": [
18
+ "--inspect-brk",
19
+ "--trace-warnings",
20
+ "--experimental-vm-modules",
21
+ "${workspaceFolder}/node_modules/.bin/jest",
22
+ "${fileBasenameNoExtension}",
23
+ "--detectOpenHandles"
24
+ ],
25
+ "cwd": "${workspaceFolder}",
26
+ "console": "integratedTerminal",
27
+ "internalConsoleOptions": "neverOpen"
28
+ },
29
+ {
30
+ "type": "node",
31
+ "request": "launch",
32
+ "name": "test.all",
33
+ "runtimeExecutable": "node",
34
+ "runtimeArgs": [
35
+ "--inspect-brk",
36
+ "--trace-warnings",
37
+ "${workspaceFolder}/node_modules/.bin/jest"
38
+ ],
39
+ "cwd": "${workspaceFolder}",
40
+ "console": "integratedTerminal",
41
+ "internalConsoleOptions": "neverOpen"
42
+ },
43
+ {
44
+ "type": "node",
45
+ "request": "launch",
46
+ "name": "boot",
47
+ "runtimeExecutable": "yarn",
48
+ "runtimeArgs": ["run", "--inspect-brk", "--trace-warnings", "boot"],
49
+ "cwd": "${workspaceFolder}",
50
+ "console": "integratedTerminal",
51
+ "internalConsoleOptions": "neverOpen"
52
+ }
53
+ ]
54
+ }
@@ -1,67 +1,63 @@
1
1
  {
2
- "debug.node.autoAttach": "on",
3
- "git.ignoreLimitWarning": true,
4
- "javascript.validate.enable": false,
5
- "files.watcherExclude": {
6
- "**/.git/objects/**": true,
7
- "**/.git/subtree-cache/**": true,
8
- "**/build/**": true,
9
- "**/node_modules/**": true,
10
- },
11
- "search.exclude": {
12
- "**/build/**": true,
13
- "**/node_modules/**": true,
14
- "**/.next/**": true
15
- },
16
- "editor.maxTokenizationLineLength": 20000000,
17
- "[javascript]": {
18
- "editor.formatOnSave": false
19
- },
20
- "[javascriptreact]": {
21
- "editor.formatOnSave": false
22
- },
23
- "[typescript]": {
24
- "editor.formatOnSave": false
25
- },
26
- "[typescriptreact]": {
27
- "editor.formatOnSave": false
28
- },
29
- "[handlebars]": {
30
- "editor.formatOnSave": false
31
- },
32
- "typescript.tsdk": "node_modules/typescript/lib",
33
- "cSpell.ignorePaths": [
34
- "**/package-lock.json",
35
- "**/node_modules/**",
36
- "**/build/**",
37
- "**/vscode-extension/**",
38
- "**/.git/objects/**",
39
- ".vscode",
40
- ".spruce"
41
- ],
42
- "cSpell.words": [
43
- "arkit",
44
- "autogenerated",
45
- "scrollable",
46
- "serializable"
47
- ],
48
- "debug.javascript.unmapMissingSources": true,
49
- "javascript.preferences.importModuleSpecifier": "relative",
50
- "typescript.preferences.importModuleSpecifier": "relative",
51
- "eslint.useFlatConfig": true,
52
- "eslint.enable": true,
53
- "eslint.validate": [
54
- "javascript",
55
- "javascriptreact",
56
- "typescript",
57
- "typescriptreact"
58
- ],
59
- "eslint.workingDirectories": [
60
- "./"
61
- ],
62
- "typescript.validate.enable": true,
63
- "editor.formatOnSave": false,
64
- "editor.codeActionsOnSave": {
65
- "source.fixAll.eslint": "always"
66
- }
67
- }
2
+ "debug.node.autoAttach": "on",
3
+ "git.ignoreLimitWarning": true,
4
+ "javascript.validate.enable": false,
5
+ "files.watcherExclude": {
6
+ "**/.git/objects/**": true,
7
+ "**/.git/subtree-cache/**": true,
8
+ "**/build/**": true,
9
+ "**/node_modules/**": true
10
+ },
11
+ "search.exclude": {
12
+ "**/build/**": true,
13
+ "**/node_modules/**": true,
14
+ "**/.next/**": true
15
+ },
16
+ "editor.codeActionsOnSave": {
17
+ "source.fixAll.eslint": "always"
18
+ },
19
+ "editor.formatOnSave": true,
20
+ "editor.formatOnSaveMode": "file",
21
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
22
+ "editor.maxTokenizationLineLength": 20000000,
23
+ "[javascript]": {
24
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
25
+ "editor.formatOnSave": true
26
+ },
27
+ "[javascriptreact]": {
28
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
29
+ "editor.formatOnSave": true
30
+ },
31
+ "[typescript]": {
32
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
33
+ "editor.formatOnSave": true
34
+ },
35
+ "[typescriptreact]": {
36
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
37
+ "editor.formatOnSave": true
38
+ },
39
+ "eslint.enable": true,
40
+ "eslint.useFlatConfig": true,
41
+ "eslint.validate": [
42
+ "javascript",
43
+ "javascriptreact",
44
+ "typescript",
45
+ "typescriptreact"
46
+ ],
47
+ "eslint.workingDirectories": ["./"],
48
+ "debug.javascript.unmapMissingSources": true,
49
+ "javascript.preferences.importModuleSpecifier": "relative",
50
+ "typescript.preferences.importModuleSpecifier": "relative",
51
+ "typescript.tsdk": "node_modules/typescript/lib",
52
+ "typescript.validate.enable": true,
53
+ "cSpell.ignorePaths": [
54
+ "**/package-lock.json",
55
+ "**/node_modules/**",
56
+ "**/build/**",
57
+ "**/vscode-extension/**",
58
+ "**/.git/objects/**",
59
+ ".vscode",
60
+ ".spruce"
61
+ ],
62
+ "cSpell.words": ["arkit", "autogenerated", "scrollable", "serializable"]
63
+ }
@@ -1,130 +1,124 @@
1
1
  {
2
- "version": "2.0.0",
3
- "tasks": [
4
- {
5
- "type": "npm",
6
- "script": "watch.build.dev",
7
- "group": "build",
8
- "label": "watch.build.dev & problem.watcher",
9
- "isBackground": true,
10
- "runOptions": {
11
- "runOn": "folderOpen"
12
- },
13
- "promptOnClose": false,
14
- "presentation": {
15
- "focus": false,
16
- "reveal": "never"
17
- },
18
- "problemMatcher": {
19
- "base": "$tsc-watch",
20
- "applyTo": "allDocuments"
21
- }
22
- },
23
- {
24
- "label": "test.file",
25
- "command": "spruce",
26
- "args": [
27
- "test",
28
- "--inspect",
29
- "5200",
30
- "--pattern",
31
- "${fileBasenameNoExtension}",
32
- "--watchMode",
33
- "standard"
34
- ],
35
- "promptOnClose": false,
36
- "group": {
37
- "kind": "test",
38
- "isDefault": true
39
- },
40
- "presentation": {
41
- "reveal": "always",
42
- "panel": "dedicated",
43
- },
44
- "problemMatcher": []
45
- },
46
- {
47
- "label": "test.reporter",
48
- "command": "spruce",
49
- "args": [
50
- "test",
51
- "--shouldHoldAtStart",
52
- "true",
53
- "--watchMode",
54
- "smart"
55
- ],
56
- "promptOnClose": false,
57
- "group": "test",
58
- "runOptions": {
59
- "runOn": "folderOpen"
60
- },
61
- "presentation": {
62
- "panel": "shared",
63
- "focus": true,
64
- "reveal": "always"
65
- }
66
- },
67
- {
68
- "label": "spruce",
69
- "type": "shell",
70
- "command": "spruce ${input:spruceCommand}",
71
- "problemMatcher": [],
72
- "presentation": {
73
- "reveal": "always",
74
- "focus": true,
75
- "panel": "new",
76
- "clear": false
77
- }
78
- },
79
- {
80
- "label": "shell",
81
- "type": "shell",
82
- "command": "${input:command} ${input:optionsCommand}",
83
- "problemMatcher": [],
84
- "presentation": {
85
- "reveal": "always",
86
- "focus": true,
87
- "panel": "new",
88
- "clear": false
89
- }
90
- },
91
- {
92
- "label": "ndx",
93
- "type": "shell",
94
- "command": "ndx ${input:ndxCommand}",
95
- "problemMatcher": [],
96
- "presentation": {
97
- "reveal": "always",
98
- "focus": true,
99
- "panel": "new",
100
- "clear": false
101
- }
102
- }
103
- ],
104
- "inputs": [
105
- {
106
- "id": "spruceCommand",
107
- "description": "spruce command",
108
- "default": "create.test",
109
- "type": "promptString"
110
- },
111
- {
112
- "id": "command",
113
- "description": "command",
114
- "default": "yarn",
115
- "type": "promptString"
116
- },
117
- {
118
- "id": "optionsCommand",
119
- "description": "optionsCommand",
120
- "default": "add",
121
- "type": "promptString"
122
- },
123
- {
124
- "id": "ndxCommand",
125
- "description": "ndx command",
126
- "default": "create.module",
127
- "type": "promptString"
128
- }
129
- ]
130
- }
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "npm",
6
+ "script": "watch.build.dev",
7
+ "group": "build",
8
+ "label": "watch.build.dev & problem.watcher",
9
+ "isBackground": true,
10
+ "runOptions": {
11
+ "runOn": "folderOpen"
12
+ },
13
+ "promptOnClose": false,
14
+ "presentation": {
15
+ "focus": false,
16
+ "reveal": "never"
17
+ },
18
+ "problemMatcher": {
19
+ "base": "$tsc-watch",
20
+ "applyTo": "allDocuments"
21
+ }
22
+ },
23
+ {
24
+ "label": "test.file",
25
+ "command": "spruce",
26
+ "args": [
27
+ "test",
28
+ "--inspect",
29
+ "5200",
30
+ "--pattern",
31
+ "${fileBasenameNoExtension}",
32
+ "--watchMode",
33
+ "standard"
34
+ ],
35
+ "promptOnClose": false,
36
+ "group": {
37
+ "kind": "test",
38
+ "isDefault": true
39
+ },
40
+ "presentation": {
41
+ "reveal": "always",
42
+ "panel": "dedicated"
43
+ },
44
+ "problemMatcher": []
45
+ },
46
+ {
47
+ "label": "test.reporter",
48
+ "command": "spruce",
49
+ "args": ["test", "--shouldHoldAtStart", "true", "--watchMode", "smart"],
50
+ "promptOnClose": false,
51
+ "group": "test",
52
+ "runOptions": {
53
+ "runOn": "folderOpen"
54
+ },
55
+ "presentation": {
56
+ "panel": "shared",
57
+ "focus": true,
58
+ "reveal": "always"
59
+ }
60
+ },
61
+ {
62
+ "label": "spruce",
63
+ "type": "shell",
64
+ "command": "spruce ${input:spruceCommand}",
65
+ "problemMatcher": [],
66
+ "presentation": {
67
+ "reveal": "always",
68
+ "focus": true,
69
+ "panel": "new",
70
+ "clear": false
71
+ }
72
+ },
73
+ {
74
+ "label": "shell",
75
+ "type": "shell",
76
+ "command": "${input:command} ${input:optionsCommand}",
77
+ "problemMatcher": [],
78
+ "presentation": {
79
+ "reveal": "always",
80
+ "focus": true,
81
+ "panel": "new",
82
+ "clear": false
83
+ }
84
+ },
85
+ {
86
+ "label": "ndx",
87
+ "type": "shell",
88
+ "command": "ndx ${input:ndxCommand}",
89
+ "problemMatcher": [],
90
+ "presentation": {
91
+ "reveal": "always",
92
+ "focus": true,
93
+ "panel": "new",
94
+ "clear": false
95
+ }
96
+ }
97
+ ],
98
+ "inputs": [
99
+ {
100
+ "id": "spruceCommand",
101
+ "description": "spruce command",
102
+ "default": "create.test",
103
+ "type": "promptString"
104
+ },
105
+ {
106
+ "id": "command",
107
+ "description": "command",
108
+ "default": "yarn",
109
+ "type": "promptString"
110
+ },
111
+ {
112
+ "id": "optionsCommand",
113
+ "description": "optionsCommand",
114
+ "default": "add",
115
+ "type": "promptString"
116
+ },
117
+ {
118
+ "id": "ndxCommand",
119
+ "description": "ndx command",
120
+ "default": "create.module",
121
+ "type": "promptString"
122
+ }
123
+ ]
124
+ }
package/README.md CHANGED
@@ -1,2 +1,3 @@
1
1
  # meta-node
2
+
2
3
  Meta-layer utilities for maintaining Node.js package ecosystems.
@@ -2,10 +2,6 @@
2
2
  "scriptUpdater": {
3
3
  "skipped": []
4
4
  },
5
- "skipped": [
6
- "skill"
7
- ],
8
- "installed": [
9
- "test"
10
- ]
11
- }
5
+ "skipped": ["skill"],
6
+ "installed": ["test"]
7
+ }
@@ -43,7 +43,8 @@ export default class AbstractAutomoduleTest extends AbstractPackageTest {
43
43
  // A-${this.generateId()}
44
44
  `;
45
45
  static setFakeExec() {
46
- AbstractAutomodule.exec = fakeExec;
46
+ AbstractAutomodule.exec =
47
+ fakeExec;
47
48
  resetCallsToExec();
48
49
  }
49
50
  static setFakePathExists() {
@@ -1 +1 @@
1
- {"version":3,"file":"AbstractAutomoduleTest.js","sourceRoot":"","sources":["../../src/__tests__/AbstractAutomoduleTest.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AbstractAutomoduleTest.js","sourceRoot":"","sources":["../../src/__tests__/AbstractAutomoduleTest.ts"],"names":[],"mappings":"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"}
@@ -26,13 +26,16 @@ export default class NpmAutopackageTest extends AbstractPackageTest {
26
26
  private static readonly customLib;
27
27
  private static readonly customType;
28
28
  private static readonly customInclude;
29
- private static readonly customOption;
29
+ private static readonly customTsconfigOption;
30
+ private static readonly customJestOption;
31
+ private static readonly customScript;
30
32
  private static readonly setupVscodeCmd;
31
33
  private static readonly checkGenerateIdVersionCmd;
32
34
  private static readonly checkNodeTddVersionCmd;
33
35
  private static readonly checkEslintConfigNdxVersionCmd;
34
36
  private static readonly checkPrettierConfigNdxVersionCmd;
35
37
  private static readonly dependencies;
38
+ private static readonly yarnRemoveDevDepsCommand;
36
39
  private static readonly yarnInstallDevDepsCommand;
37
40
  private static readonly abstractTestFile;
38
41
  private static readonly eslintConfigFile;
@@ -59,12 +62,13 @@ export default class NpmAutopackageTest extends AbstractPackageTest {
59
62
  protected static thenCommitVscodeChanges(): Promise<void>;
60
63
  protected static thenUpdatesVscodeTasksJson(): Promise<void>;
61
64
  protected static thenCommitsUpdateVscodeTasksJson(): Promise<void>;
65
+ protected static thenRemovesOldDevDependencies(): Promise<void>;
62
66
  protected static thenInstallsDefaultDevDependencies(): Promise<void>;
63
67
  protected static thenCommitsInstallDefaultDevDependencies(): Promise<void>;
64
68
  protected static thenInstallsTestsDirectory(): Promise<void>;
65
69
  protected static thenInstallsAbstractPackageTest(): Promise<void>;
66
70
  protected static thenCommitsInstallAbstractPackageTest(): Promise<void>;
67
- protected static thenDeletesOldEslintConfigMjs(): Promise<void>;
71
+ protected static thenRemovesOldEslintConfigMjs(): Promise<void>;
68
72
  protected static thenInstallsNewEslintConfigJs(): Promise<void>;
69
73
  protected static thenCommitsInstallEslintConfigFile(): Promise<void>;
70
74
  protected static thenInstallsPrettierConfigFile(): Promise<void>;
@@ -72,6 +76,7 @@ export default class NpmAutopackageTest extends AbstractPackageTest {
72
76
  protected static thenInstallsSettingsJsonFile(): Promise<void>;
73
77
  protected static thenCommitsInstallSettingsJsonFile(): Promise<void>;
74
78
  protected static lastlyOpensVscodeAtEnd(): Promise<void>;
79
+ protected static removesCertainKeysFromPackageJson(): Promise<void>;
75
80
  protected static installsEslintConfigIfNotExists(): Promise<void>;
76
81
  protected static installsPrettierConfigIfNotExists(): Promise<void>;
77
82
  protected static installsDevDependenciesIfGenerateIdNotLatest(): Promise<void>;
@@ -100,6 +105,7 @@ export default class NpmAutopackageTest extends AbstractPackageTest {
100
105
  protected static doesNotInstallSettingsJsonFileIfContentsEqual(): Promise<void>;
101
106
  private static run;
102
107
  private static runTwice;
108
+ private static getByPath;
103
109
  private static setShouldInstallDevDeps;
104
110
  private static get scopedPackageName();
105
111
  private static get createModuleCmd();
@@ -115,6 +121,7 @@ export default class NpmAutopackageTest extends AbstractPackageTest {
115
121
  private static get reposUrl();
116
122
  private static get orgsUrl();
117
123
  private static get originalPackageJson();
124
+ private static get originalPackageJsonWithDummies();
118
125
  private static get updatedPackageJson();
119
126
  private static get originalTsconfig();
120
127
  private static get updatedTsconfig();