@mrpelz/boilerplate-node 8.3.0 → 9.0.0

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/Makefile CHANGED
@@ -9,9 +9,11 @@ include $(BASE_FILE)/Makefile
9
9
  NODE := node --use_strict --enable-source-maps --stack-trace-limit=100 "dist/main.js"
10
10
 
11
11
  run:
12
+ $(SUB_RUN)
13
+
12
14
  $(NODE)
13
15
 
14
16
  watch_run:
15
- nodemon --watch "dist/**/*" --watch "node_modules/**/*" --ext "js,mjs" \
17
+ nodemon --quiet --watch "dist/**/*" --watch "node_modules/**/*" --ext "js,mjs" \
16
18
  --exec '$(NODE)'; \
17
19
  exit 0;
package/eslint.config.js CHANGED
@@ -1,5 +1,10 @@
1
- // @ts-ignore
2
- import config from '@mrpelz/boilerplate-common/eslint.config.js';
1
+ import {
2
+ config,
3
+ configMeta,
4
+ // @ts-ignore
5
+ } from '@mrpelz/boilerplate-common/eslint.config.js';
6
+
7
+ export { config, configMeta };
3
8
 
4
9
  /** @type {import('eslint').Linter.FlatConfig[]} */
5
- export default config;
10
+ export default [configMeta, config];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrpelz/boilerplate-node",
3
- "version": "8.3.0",
3
+ "version": "9.0.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mrpelz/boilerplate.git",
@@ -17,7 +17,7 @@ tmux \
17
17
  set-option -p pane-border-format "eslint (eslint.config.json, includes files outside \"src\")" \; \
18
18
  split-window -h -l 50% "make -s watch_test" \; \
19
19
  set-option -p pane-border-format "jest (jest.config.json)" \; \
20
- split-window -f -v -l 50% "make -s watch_typescript" \; \
20
+ split-window -f -v -l 50% "make -s watch_build" \; \
21
21
  set-option -p pane-border-format "tsc (tsconfig.build.json, excludes test-files)" \; \
22
22
  split-window -h -l 50% "make -s watch_config" \; \
23
23
  set-option -p pane-border-format "tsc (tsconfig.meta.json, checks files outside \"src\")" \; \
package/scripts/watch.sh CHANGED
@@ -17,7 +17,7 @@ tmux \
17
17
  set-option -p pane-border-format "eslint (eslint.config.json, includes files outside \"src\")" \; \
18
18
  split-window -h -l 50% "make -s watch_test" \; \
19
19
  set-option -p pane-border-format "jest (jest.config.json)" \; \
20
- split-window -f -v -l 50% "make -s watch_typescript" \; \
20
+ split-window -f -v -l 50% "make -s watch_build" \; \
21
21
  set-option -p pane-border-format "tsc (tsconfig.build.json, excludes test-files)" \; \
22
22
  split-window -h -l 50% "make -s watch_config" \; \
23
23
  set-option -p pane-border-format "tsc (tsconfig.meta.json, checks files outside \"src\")" \; \
package/tsconfig.json CHANGED
@@ -1,7 +1,5 @@
1
1
  {
2
- "compilerOptions": {
3
- "outDir": "dist",
4
- },
2
+ "compilerOptions": {},
5
3
  "extends": "@mrpelz/boilerplate-common/tsconfig.json",
6
4
  "include": ["src/**/*"]
7
5
  }