testeranto 0.79.45 → 0.79.46

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/Bundle.Dockerfile CHANGED
@@ -1,6 +1,5 @@
1
1
  FROM node:18.18.0
2
2
 
3
- # Install build dependencies
4
3
  RUN apt-get update && \
5
4
  apt-get install -y --no-install-recommends \
6
5
  python3 \
@@ -18,8 +17,8 @@ RUN yarn install
18
17
  COPY ./src/ /usr/src/app/src
19
18
  COPY ./subPackages/ /usr/src/app/subPackages
20
19
  COPY ./testeranto.mts /usr/src/app/testeranto.mts
21
- # COPY ./features.test.mts /usr/src/app/features.test.mts
22
20
  COPY ./tsconfig.json /usr/src/app/tsconfig.json
21
+ COPY ./init.mts /usr/src/app/init.mts
23
22
 
24
23
  RUN yarn run init
25
24
  RUN yarn bundle
package/Report.Dockerfile CHANGED
@@ -1,6 +1,5 @@
1
1
  FROM node:18.18.0
2
2
 
3
- # Install build dependencies
4
3
  RUN apt-get update && \
5
4
  apt-get install -y --no-install-recommends \
6
5
  python3 \
@@ -18,9 +17,8 @@ RUN yarn install
18
17
  COPY ./src/ /usr/src/app/src
19
18
  COPY ./subPackages/ /usr/src/app/subPackages
20
19
  COPY ./testeranto.mts /usr/src/app/testeranto.mts
21
- # COPY ./features.test.mts /usr/src/app/features.test.mts
22
20
  COPY ./tsconfig.json /usr/src/app/tsconfig.json
23
-
21
+ COPY ./init.mts /usr/src/app/init.mts
24
22
  RUN yarn run init
25
23
  RUN yarn report
26
24
  # COPY ./docs/ /usr/src/app/docs
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "testeranto",
3
3
  "description": "teeny tiny tightly-typed typescript tests",
4
- "version": "0.79.45",
4
+ "version": "0.79.46",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },