underpost 2.7.8 → 2.7.83
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.
|
@@ -34,25 +34,24 @@ jobs:
|
|
|
34
34
|
name: Publish to npm
|
|
35
35
|
run: npm publish --provenance --access public
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
37
|
+
build-and-publish-ghpkg:
|
|
38
|
+
# prevents this action from running on forks
|
|
39
|
+
if: github.repository == 'underpostnet/pwa-microservices-template-ghpkg'
|
|
40
|
+
runs-on: ubuntu-latest
|
|
41
|
+
permissions:
|
|
42
|
+
contents: read
|
|
43
|
+
id-token: write
|
|
44
|
+
steps:
|
|
45
|
+
- uses: actions/checkout@v4
|
|
46
|
+
- uses: actions/setup-node@v4
|
|
47
|
+
with:
|
|
48
|
+
node-version: '22.x'
|
|
49
|
+
registry-url: 'https://registry.npmjs.org'
|
|
45
50
|
|
|
46
|
-
- name:
|
|
47
|
-
run:
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
git config --global user.name 'underpostnet'
|
|
51
|
-
git config --global user.email 'fcoverdugoa@underpost.net'
|
|
52
|
-
git config --global credential.interactive always
|
|
53
|
-
git config user.name 'underpostnet'
|
|
54
|
-
git config user.email 'fcoverdugoa@underpost.net'
|
|
55
|
-
git config credential.interactive always
|
|
51
|
+
- name: Install Dependencies
|
|
52
|
+
run: npm install
|
|
53
|
+
|
|
54
|
+
- run: npm ci
|
|
56
55
|
|
|
57
56
|
# Publish to npm git hub package
|
|
58
57
|
- uses: actions/setup-node@v4
|
package/bin/index.js
CHANGED
package/docker-compose.yml
CHANGED
package/package.json
CHANGED
|
@@ -109,6 +109,6 @@ SrrComponent = ({ ttiLoadTimeLimit }) => {
|
|
|
109
109
|
const CacheControl = ${CacheControl};
|
|
110
110
|
CacheControl({ ttiLoadTimeLimit: ${ttiLoadTimeLimit ? ttiLoadTimeLimit : 1000 * 70 * 1} });
|
|
111
111
|
</script>
|
|
112
|
-
<div class="clean-cache-container">v2.7.
|
|
112
|
+
<div class="clean-cache-container">v2.7.83</div>
|
|
113
113
|
`;
|
|
114
114
|
};
|