web-push-notifications 3.44.3 → 3.44.6
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/.gitlab-ci.yml +2 -0
- package/ci/npm/Dockerfile +4 -1
- package/package.json +1 -1
package/.gitlab-ci.yml
CHANGED
package/ci/npm/Dockerfile
CHANGED
|
@@ -8,7 +8,8 @@ ARG NPM_TOKEN
|
|
|
8
8
|
|
|
9
9
|
ENV NPM_TOKEN=${NPM_TOKEN}
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
COPY output/npm /publish/
|
|
12
|
+
RUN echo "=== Files in /publish ===" && ls -lah /publish && echo "=== Recursive listing ===" && ls -R /publish
|
|
12
13
|
|
|
13
14
|
COPY .npmrc /publish/.npmrc
|
|
14
15
|
COPY package.json /publish/package.json
|
|
@@ -16,4 +17,6 @@ COPY package.json /publish/package.json
|
|
|
16
17
|
COPY README.md /publish/README.md
|
|
17
18
|
COPY LICENSE.md /publish/LICENSE.md
|
|
18
19
|
|
|
20
|
+
RUN echo "2=== Files in /publish ===" && ls -lah /publish && echo "1=== Recursive listing ===" && ls -R /publish
|
|
21
|
+
|
|
19
22
|
WORKDIR /publish
|