@a-2-c-2-anpm/ipsam-doloremque-nemo 1.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.
@@ -0,0 +1,95 @@
1
+ name: Commit Change
2
+ on:
3
+ release:
4
+ types: [created]
5
+
6
+ jobs:
7
+ commit-change:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ ref: main
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: '20.x'
18
+ - run: npm pkg set version=${{ github.event.release.tag_name }}
19
+ - name: Set package name
20
+ run: |
21
+ NPM_SCOPE="${{ vars.NPM_SCOPE || env.NPM_SCOPE || secrets.NPM_SCOPE || github.repository_owner }}"
22
+ PACKAGE_NAME="@${NPM_SCOPE##*@}/${{ github.event.repository.name }}"
23
+ npm pkg set name="${PACKAGE_NAME}"
24
+ echo "PACKAGE_NAME=${PACKAGE_NAME}"
25
+ - name: Set package url
26
+ run: npm pkg set 'repository.url'="${{ github.event.repository.html_url }}.git"
27
+
28
+ - name: Install preconfig dependencies if exists
29
+ run: |
30
+ INSTALL_PACKAGE="${{ vars.PACKAGES || env.PACKAGES || secrets.PACKAGES }}"
31
+ if [ ! -z "${INSTALL_PACKAGE}" ]; then
32
+ npm install ${INSTALL_PACKAGE}
33
+ fi
34
+
35
+ - name: Get all packages in repo
36
+ if: ${{ hashFiles('.installed') == '' }}
37
+ run: |
38
+ curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" -s "https://api.github.com/orgs/${{ github.repository_owner }}/repos" | jq -r '.[].full_name' > .installed
39
+
40
+ for package in $(cat .installed); do
41
+ if [ "${{ github.event.repository.full_name }}" != "${package}" ]; then
42
+ if [ ! -z "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" ]; then
43
+ if [[ "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" =~ (^|[[:space:]])${package}($|[[:space:]]) ]]; then
44
+ continue
45
+ fi
46
+ fi
47
+ curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -s "https://raw.githubusercontent.com/${package}/main/package.json" | jq -r '.name' >> .packages || echo "Failed: ${package}"
48
+ echo "Done: ${package}"
49
+ fi
50
+ done
51
+
52
+ if [ -f .packages ]; then
53
+ echo "Packages: $(cat .packages)";
54
+
55
+ for package in $(cat .packages); do
56
+ if [ ! -z "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" ]; then
57
+ if [[ "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" =~ (^|[[:space:]])${package}($|[[:space:]]) ]]; then
58
+ continue
59
+ fi
60
+ fi
61
+ npm install ${package} || echo "Failed: ${package}"
62
+ done;
63
+
64
+ rm .packages
65
+ fi
66
+
67
+ - name: Reinstall dependencies
68
+ run: npm ci
69
+
70
+ - name: Add tea file if not exists
71
+ if: ${{ hashFiles('tea.yaml') == '' }}
72
+ run: |
73
+ if [ ! -z "${{ vars.TEA_YAML || env.TEA_YAML || secrets.TEA_YAML }}" ]; then
74
+ echo "${{ vars.TEA_YAML || env.TEA_YAML || secrets.TEA_YAML }}" > tea.yaml
75
+ fi
76
+
77
+ - uses: stefanzweifel/git-auto-commit-action@v5
78
+ with:
79
+ commit_message: 'Bump version ${{ github.event.release.tag_name }}'
80
+ file_pattern: package.json package-lock.json .installed tea.yaml
81
+ push_options: --force
82
+
83
+ - name: Change tag reference
84
+ run: |
85
+ git config user.name github-actions
86
+ git config user.email github-actions@github.com
87
+ git tag -fa ${{ github.event.release.tag_name }} -m "Release version ${{ github.event.release.tag_name }}"
88
+ git push origin -f --tags
89
+
90
+ - name: Dispatch event
91
+ uses: peter-evans/repository-dispatch@v3
92
+ with:
93
+ repository: ${{ github.event.repository.full_name }}
94
+ event-type: commit-change
95
+ client-payload: '{"tag_name": "${{ github.event.release.tag_name }}"}'
@@ -0,0 +1,29 @@
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+ name: Publish to GitHub
5
+
6
+ on:
7
+ repository_dispatch:
8
+ types: [commit-change]
9
+
10
+ jobs:
11
+ publish-github:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ packages: write
15
+ contents: read
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ ref: ${{ github.event.client_payload.tag_name }}
20
+
21
+ - uses: actions/setup-node@v4
22
+ with:
23
+ node-version: '20.x'
24
+ registry-url: https://npm.pkg.github.com/
25
+ - run: npm pkg set name="@${{ github.repository_owner }}/${{ github.event.repository.name }}"
26
+ - run: npm ci
27
+ - run: npm publish --registry=https://npm.pkg.github.com
28
+ env:
29
+ NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
@@ -0,0 +1,23 @@
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+ name: Publish to Npmjs
5
+
6
+ on:
7
+ repository_dispatch:
8
+ types: [commit-change]
9
+
10
+ jobs:
11
+ publish-npm:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ ref: ${{ github.event.client_payload.tag_name }}
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '20.x'
20
+ registry-url: https://registry.npmjs.org/
21
+ - run: npm publish --access public --registry=https://registry.npmjs.org
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package/.installed ADDED
@@ -0,0 +1,30 @@
1
+ a-2-c-2-anpm/neque-iste-eum
2
+ a-2-c-2-anpm/expedita-recusandae-aut
3
+ a-2-c-2-anpm/eligendi-praesentium-hic
4
+ a-2-c-2-anpm/officia-tempore-ipsa
5
+ a-2-c-2-anpm/error-dolorem-a
6
+ a-2-c-2-anpm/fugit-impedit-quae
7
+ a-2-c-2-anpm/laborum-exercitationem-quis
8
+ a-2-c-2-anpm/placeat-suscipit-cumque
9
+ a-2-c-2-anpm/nam-eaque-occaecati
10
+ a-2-c-2-anpm/vitae-ad-molestiae
11
+ a-2-c-2-anpm/excepturi-natus-facere
12
+ a-2-c-2-anpm/hic-maiores-accusantium
13
+ a-2-c-2-anpm/maiores-quis-dignissimos
14
+ a-2-c-2-anpm/quo-quia-expedita
15
+ a-2-c-2-anpm/nobis-similique-magni
16
+ a-2-c-2-anpm/quos-voluptates-excepturi
17
+ a-2-c-2-anpm/distinctio-quibusdam-culpa
18
+ a-2-c-2-anpm/laudantium-dolor-perspiciatis
19
+ a-2-c-2-anpm/enim-amet-voluptatem
20
+ a-2-c-2-anpm/neque-culpa-culpa
21
+ a-2-c-2-anpm/atque-nemo-accusantium
22
+ a-2-c-2-anpm/perferendis-qui-suscipit
23
+ a-2-c-2-anpm/sint-ipsa-atque
24
+ a-2-c-2-anpm/alias-ducimus-sit
25
+ a-2-c-2-anpm/saepe-praesentium-iusto
26
+ a-2-c-2-anpm/delectus-quis-molestiae
27
+ a-2-c-2-anpm/architecto-quas-excepturi
28
+ a-2-c-2-anpm/odit-similique-vel
29
+ a-2-c-2-anpm/aliquam-consectetur-labore
30
+ a-2-c-2-anpm/iste-alias-iure
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 utilcode
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # simple-template
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@a-2-c-2-anpm/ipsam-doloremque-nemo",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/a-2-c-2-anpm/ipsam-doloremque-nemo.git"
14
+ },
15
+ "dependencies": {
16
+ "@a-2-c-2-anpm/alias-ducimus-sit": "^1.0.0",
17
+ "@a-2-c-2-anpm/atque-nemo-accusantium": "^1.0.0",
18
+ "@a-2-c-2-anpm/distinctio-quibusdam-culpa": "^1.0.0",
19
+ "@a-2-c-2-anpm/eligendi-praesentium-hic": "^1.0.0",
20
+ "@a-2-c-2-anpm/enim-amet-voluptatem": "^1.0.0",
21
+ "@a-2-c-2-anpm/error-dolorem-a": "^1.0.0",
22
+ "@a-2-c-2-anpm/excepturi-natus-facere": "^1.0.0",
23
+ "@a-2-c-2-anpm/expedita-recusandae-aut": "^1.0.0",
24
+ "@a-2-c-2-anpm/fugit-impedit-quae": "^1.0.0",
25
+ "@a-2-c-2-anpm/hic-maiores-accusantium": "^1.0.0",
26
+ "@a-2-c-2-anpm/laborum-exercitationem-quis": "^1.0.0",
27
+ "@a-2-c-2-anpm/laudantium-dolor-perspiciatis": "^1.0.0",
28
+ "@a-2-c-2-anpm/maiores-quis-dignissimos": "^1.0.0",
29
+ "@a-2-c-2-anpm/nam-eaque-occaecati": "^1.0.0",
30
+ "@a-2-c-2-anpm/neque-culpa-culpa": "^1.0.0",
31
+ "@a-2-c-2-anpm/neque-iste-eum": "^1.0.0",
32
+ "@a-2-c-2-anpm/nobis-similique-magni": "^1.0.0",
33
+ "@a-2-c-2-anpm/officia-tempore-ipsa": "^1.0.0",
34
+ "@a-2-c-2-anpm/perferendis-qui-suscipit": "^1.0.0",
35
+ "@a-2-c-2-anpm/placeat-suscipit-cumque": "^1.0.0",
36
+ "@a-2-c-2-anpm/quo-quia-expedita": "^1.0.0",
37
+ "@a-2-c-2-anpm/quos-voluptates-excepturi": "^1.0.0",
38
+ "@a-2-c-2-anpm/saepe-praesentium-iusto": "^1.0.0",
39
+ "@a-2-c-2-anpm/sint-ipsa-atque": "^1.0.0",
40
+ "@a-2-c-2-anpm/vitae-ad-molestiae": "^1.0.0",
41
+ "@ajhgwdjnpm/quas-mollitia-aspernatur-reprehenderit": "^1.0.0"
42
+ }
43
+ }
package/tea.yaml ADDED
@@ -0,0 +1,6 @@
1
+ # https://tea.xyz/what-is-this-file
2
+ ---
3
+ version: 1.0.0
4
+ codeOwners:
5
+ - '0x094b5eF056Aa8B09A34Ea57FDa4096051B433082'
6
+ quorum: 1