file-obj-queue 3.0.44 → 3.0.51
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/.github/workflows/npm-publish.yml +12 -32
- package/.nvmrc +0 -0
- package/package.json +6 -3
- package/test/package.js +6 -3
|
@@ -15,35 +15,15 @@ jobs:
|
|
|
15
15
|
- uses: actions/setup-node@v4
|
|
16
16
|
with:
|
|
17
17
|
node-version: 20
|
|
18
|
-
- run:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# cache: 'npm'
|
|
31
|
-
|
|
32
|
-
- name: Install npm packages
|
|
33
|
-
run: npm install
|
|
34
|
-
|
|
35
|
-
- name: Unit tests
|
|
36
|
-
run: npm test
|
|
37
|
-
|
|
38
|
-
# - name: Build Banana
|
|
39
|
-
# run: npm run banana -- --build --env prod
|
|
40
|
-
|
|
41
|
-
# - uses: actions/upload-artifact@v4
|
|
42
|
-
# with:
|
|
43
|
-
# name: banana
|
|
44
|
-
# path: ./build/
|
|
45
|
-
|
|
46
|
-
# - name: Publish NPM package
|
|
47
|
-
# run: npm publish
|
|
48
|
-
# env:
|
|
49
|
-
# NPM_CONFIG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
18
|
+
- run: |
|
|
19
|
+
git config --global user.email "you@example.com"
|
|
20
|
+
git config --global user.name "Your Name"
|
|
21
|
+
git checkout $CI_COMMIT_REF_NAME
|
|
22
|
+
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
|
|
23
|
+
npm config set scope "@tenado"
|
|
24
|
+
SPACE_CHAR=" "
|
|
25
|
+
npx standard-version --releaseCommitMessageFormat "chore(release):${SPACE_CHAR}{{currentTag}}"
|
|
26
|
+
git push --follow-tags origin $CI_COMMIT_REF_NAME
|
|
27
|
+
npm publish --access public
|
|
28
|
+
env:
|
|
29
|
+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
package/.nvmrc
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,20 +2,23 @@
|
|
|
2
2
|
"author": {
|
|
3
3
|
"name": "Jim Manton"
|
|
4
4
|
},
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.51",
|
|
6
6
|
"bundleDependencies": [],
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@types/node": "^24.7.1",
|
|
9
|
-
"chai": "^6.2.
|
|
9
|
+
"chai": "^6.2.2",
|
|
10
10
|
"colors": "^1.4.0",
|
|
11
11
|
"diffler": "^2.0.4",
|
|
12
12
|
"fs": "^0.0.1-security",
|
|
13
|
-
"mocha": "^11.7.
|
|
13
|
+
"mocha": "^11.7.5",
|
|
14
14
|
"queuejson": "^10.0.0",
|
|
15
15
|
"ts-node": "^10.9.2",
|
|
16
16
|
"typescript": "^5.9.3",
|
|
17
17
|
"valid-path": "^2.1.0"
|
|
18
18
|
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": "22.20.0"
|
|
21
|
+
},
|
|
19
22
|
"scripts": {
|
|
20
23
|
"start": "node app.ts",
|
|
21
24
|
"test": "mocha",
|
package/test/package.js
CHANGED
|
@@ -6,20 +6,23 @@ const packageMock = {
|
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Jim Manton"
|
|
8
8
|
},
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.51",
|
|
10
10
|
"bundleDependencies": [],
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@types/node": "^24.7.1",
|
|
13
|
-
"chai": "^6.2.
|
|
13
|
+
"chai": "^6.2.2",
|
|
14
14
|
"colors": "^1.4.0",
|
|
15
15
|
"diffler": "^2.0.4",
|
|
16
16
|
"fs": "^0.0.1-security",
|
|
17
|
-
"mocha": "^11.7.
|
|
17
|
+
"mocha": "^11.7.5",
|
|
18
18
|
"queuejson": "^10.0.0",
|
|
19
19
|
"ts-node": "^10.9.2",
|
|
20
20
|
"typescript": "^5.9.3",
|
|
21
21
|
"valid-path": "^2.1.0"
|
|
22
22
|
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": "22.20.0"
|
|
25
|
+
},
|
|
23
26
|
"scripts": {
|
|
24
27
|
"start": "node app.ts",
|
|
25
28
|
"test": "mocha",
|