@mrpelz/boilerplate-node 8.2.5 → 8.4.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 +3 -1
- package/package.json +1 -1
- package/scripts/bootstrap.sh +4 -4
- package/scripts/watch-dev.sh +1 -1
- package/scripts/watch.sh +1 -1
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/package.json
CHANGED
package/scripts/bootstrap.sh
CHANGED
|
@@ -118,10 +118,10 @@ EOF
|
|
|
118
118
|
make_config .gitlab-ci.yml "$(
|
|
119
119
|
cat <<EOF
|
|
120
120
|
include:
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
121
|
+
- project: "mrpelz/boilerplate"
|
|
122
|
+
ref: main
|
|
123
|
+
file: "/gitlab/.gitlab-ci.yml"
|
|
124
|
+
# file: "/gitlab/.monorepo.gitlab-ci.yml"
|
|
125
125
|
EOF
|
|
126
126
|
)"
|
|
127
127
|
fi
|
package/scripts/watch-dev.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
|
|
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
|
|
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\")" \; \
|