release-test-mojipcmobila 1.30.3 โ†’ 2.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.
package/package.json CHANGED
@@ -1,21 +1,25 @@
1
1
  {
2
2
  "name": "release-test-mojipcmobila",
3
- "version": "1.30.3",
3
+ "version": "2.0.0",
4
+ "repository": {
5
+ "url": "https://github.com/mojipcmobila-png/release-test"
6
+ },
4
7
  "scripts": {
5
- "semantic-release": "semantic-release",
6
- "release": "release-it --config release-it.config.ts",
8
+ "release": "release-it --config .release-it.ts --ci",
9
+ "r-test": "release-it --config release-it.config.ts -d --ci",
7
10
  "pre-release": "release-it --config .release-it.prerelease.ts --preRelease=beta"
8
11
  },
9
12
  "author": "",
10
13
  "license": "ISC",
11
14
  "description": "",
15
+ "files": [
16
+ "src"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
12
21
  "devDependencies": {
13
- "@release-it/conventional-changelog": "^10.0.1",
14
- "@semantic-release/changelog": "^6.0.3",
15
- "@semantic-release/exec": "^7.1.0",
16
- "@semantic-release/git": "^10.0.1",
17
- "conventional-changelog-conventionalcommits": "^9.1.0",
18
- "release-it": "^19.0.5",
19
- "semantic-release": "^24.2.7"
22
+ "@release-it/conventional-changelog": "^11.0.1",
23
+ "release-it": "^20.2.1"
20
24
  }
21
25
  }
package/src/script.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict"
2
+
3
+
4
+ console.log("update")
@@ -1,37 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- push:
5
- branches: [main]
6
- pull_request:
7
- branches: [main]
8
-
9
- jobs:
10
- build-and-test:
11
- name: Build, Lint, and Test
12
- runs-on: ubuntu-latest
13
-
14
- steps:
15
- - name: Checkout code
16
- uses: actions/checkout@v4
17
-
18
- - name: Setup Node.js
19
- uses: actions/setup-node@v4
20
- with:
21
- node-version: 20
22
- cache: "npm"
23
-
24
- - name: Install dependencies
25
- run: npm ci
26
-
27
- # - name: Lint code
28
- # run: npm run lint --if-present
29
-
30
- # - name: Run tests
31
- # run: npm test
32
-
33
- # - name: Build project
34
- # run: npm run build --if-present
35
-
36
- - name: Job summary
37
- run: echo "โœ… CI checks passed successfully!"
@@ -1,42 +0,0 @@
1
- name: Pre-release (beta)
2
-
3
- on:
4
- workflow_dispatch:
5
- jobs:
6
- prerelease:
7
- runs-on: ubuntu-latest
8
- permissions:
9
- contents: write
10
- packages: write
11
-
12
- steps:
13
- - name: Checkout source code
14
- uses: actions/checkout@v4
15
- with:
16
- ref: main
17
- fetch-depth: 0
18
-
19
- - name: Setup Node
20
- uses: actions/setup-node@v4
21
- with:
22
- node-version: 20
23
- registry-url: "https://registry.npmjs.org"
24
-
25
- - name: Install dependencies
26
- run: npm ci
27
-
28
- - name: Configure git
29
- run: |
30
- git config --global user.email "shaadcode@gmail.com"
31
- git config --global user.name "shaadcode"
32
-
33
- - name: Configure npm authentication
34
- run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
35
- env:
36
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
37
-
38
- - name: Run release-it for pre-release
39
- run: npm run pre-release
40
- env:
41
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -1,30 +0,0 @@
1
- name: release and publish
2
-
3
- on:
4
- workflow_dispatch:
5
- jobs:
6
- release:
7
- runs-on: ubuntu-latest
8
- steps:
9
- - name: Checkout source code
10
- uses: actions/checkout@v3
11
- with:
12
- ref: main
13
- fetch-depth: 0
14
-
15
- - name: Install dependencies
16
- run: npm ci
17
-
18
- - name: initialize git user
19
- run: |
20
- git config --global user.email "shaadcode@gmail.com"
21
- git config --global user.name "shaadcode"
22
- - name: initialize the npm config
23
- run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
24
- env:
25
- NPM_TOKEN: ${{secrets.NPM_TOKEN}}
26
- - name: Run release
27
- run: npm run release
28
- env:
29
- NPM_TOKEN: ${{secrets.NPM_TOKEN}}
30
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
@@ -1,68 +0,0 @@
1
- import type { Config } from "release-it";
2
-
3
- export default {
4
- git: {
5
- "commitMessage": "chore: release v${version}",
6
- "tagName": "v${version}",
7
- "push": true
8
- },
9
- github: {
10
- releaseName: "v${version}",
11
- release: true,
12
- preRelease: true
13
- },
14
- npm: {
15
- publish: true,
16
- },
17
- plugins: {
18
- "@release-it/conventional-changelog": {
19
- "infile": "CHANGELOG.md",
20
- "header": "# Changelog",
21
- "preset": {
22
- "name": "conventionalcommits",
23
- "types": [
24
- {
25
- "type": "feat",
26
- "section": "๐Ÿš€ Features",
27
- "hidden": false
28
- },
29
- {
30
- "type": "fix",
31
- "section": "๐Ÿž Bug Fixes",
32
- "hidden": false
33
- },
34
- {
35
- "type": "chore",
36
- "section": "๐Ÿงน Chores",
37
- "hidden": false
38
- },
39
- {
40
- "type": "docs",
41
- "section": "๐Ÿ“š Documentation",
42
- "hidden": false
43
- },
44
- {
45
- "type": "refactor",
46
- "section": "๐Ÿ”ง Refactoring",
47
- "hidden": false
48
- },
49
- {
50
- "type": "perf",
51
- "section": "โšก Performance",
52
- "hidden": false
53
- },
54
- {
55
- "type": "test",
56
- "section": "โœ… Tests",
57
- "hidden": false
58
- },
59
- {
60
- "type": "style",
61
- "section": "๐ŸŽจ Styles",
62
- "hidden": false
63
- }
64
- ]
65
- }
66
- }
67
- },
68
- } satisfies Config;
package/.release-it.ts DELETED
@@ -1,70 +0,0 @@
1
- import type { Config } from 'release-it';
2
-
3
- export default {
4
- git: {
5
- "commitMessage": "chore: release v${version}",
6
- "tagName": "v${version}",
7
- "push": true
8
- },
9
- hooks: {
10
- "before:init": ["git pull"]
11
- },
12
- github: {
13
- "release": true,
14
- "releaseName": "v${version}",
15
- },
16
- "npm": {
17
- "publish": true
18
- },
19
- "plugins": {
20
- "@release-it/conventional-changelog": {
21
- "infile": "CHANGELOG.md",
22
- "header": "# Changelog",
23
- "preset": {
24
- "name": "conventionalcommits",
25
- "types": [
26
- {
27
- "type": "feat",
28
- "section": "๐Ÿš€ Features",
29
- "hidden": false
30
- },
31
- {
32
- "type": "fix",
33
- "section": "๐Ÿž Bug Fixes",
34
- "hidden": false
35
- },
36
- {
37
- "type": "chore",
38
- "section": "๐Ÿงน Chores",
39
- "hidden": false
40
- },
41
- {
42
- "type": "docs",
43
- "section": "๐Ÿ“š Documentation",
44
- "hidden": false
45
- },
46
- {
47
- "type": "refactor",
48
- "section": "๐Ÿ”ง Refactoring",
49
- "hidden": false
50
- },
51
- {
52
- "type": "perf",
53
- "section": "โšก Performance",
54
- "hidden": false
55
- },
56
- {
57
- "type": "test",
58
- "section": "โœ… Tests",
59
- "hidden": false
60
- },
61
- {
62
- "type": "style",
63
- "section": "๐ŸŽจ Styles",
64
- "hidden": false
65
- }
66
- ]
67
- }
68
- }
69
- }
70
- } satisfies Config;
package/CHANGELOG.md DELETED
@@ -1,81 +0,0 @@
1
- # Changelog
2
-
3
- ## [1.31.0-beta.0](https://github.com/mojipcmobila-png/release-test/compare/v1.30.0-beta.0...v1.31.0-beta.0) (2025-10-28)
4
-
5
- ### ๐Ÿš€ Features
6
-
7
- * a ([#63](https://github.com/mojipcmobila-png/release-test/issues/63)) ([129dacc](https://github.com/mojipcmobila-png/release-test/commit/129dacc53295447b12b9757249dc5c62151e3493))
8
-
9
- ## [1.30.0-beta.0](https://github.com/mojipcmobila-png/release-test/compare/v1.29.1...v1.30.0-beta.0) (2025-10-28)
10
-
11
- ### ๐Ÿš€ Features
12
-
13
- * update ([4419487](https://github.com/mojipcmobila-png/release-test/commit/4419487a74ea245bb44b08d727f73a67352a0b33))
14
-
15
- ## [1.27.0-0](https://github.com/mojipcmobila-png/release-test/compare/v1.26.2...v1.27.0-0) (2025-10-28)
16
-
17
- ### ๐Ÿš€ Features
18
-
19
- * update ([#49](https://github.com/mojipcmobila-png/release-test/issues/49)) ([1ff2759](https://github.com/mojipcmobila-png/release-test/commit/1ff2759a001dc81514a0268b1ba557d6102ce635))
20
-
21
- ## 1.26.2 (2025-10-28)
22
-
23
- ### ๐Ÿž Bug Fixes
24
-
25
- * update ([c4a7edd](https://github.com/mojipcmobila-png/release-test/commit/c4a7edde7fc714e7cc868d5aa78bc8202b3d4281))
26
-
27
- ## 1.27.0 (2025-10-28)
28
-
29
- ### ๐Ÿš€ Features
30
-
31
- * update ([dd7e01b](https://github.com/mojipcmobila-png/release-test/commit/dd7e01bc1abb3037efe120784aaef0785737fdc1))
32
-
33
- ## 1.26.0 (2025-10-28)
34
-
35
- ### ๐Ÿš€ Features
36
-
37
- * update ([c38eb35](https://github.com/mojipcmobila-png/release-test/commit/c38eb35049e75539a7169ebd6ade983c43af64de))
38
-
39
- ## 1.25.0 (2025-10-28)
40
-
41
- ### ๐Ÿš€ Features
42
-
43
- * update ([ba92661](https://github.com/mojipcmobila-png/release-test/commit/ba926613e1437c754470c163253bacfb8f9f45e3))
44
-
45
- ## 1.24.0 (2025-10-28)
46
-
47
- ### ๐Ÿš€ Features
48
-
49
- * update ([bf567e6](https://github.com/mojipcmobila-png/release-test/commit/bf567e6768ce374c45c20b269db70318288f9a7f))
50
-
51
- ## 1.23.0 (2025-10-28)
52
-
53
- ### ๐Ÿš€ Features
54
-
55
- * update ([d8c45ac](https://github.com/mojipcmobila-png/release-test/commit/d8c45acc75a6e45dffda73c2052be4a5dcba7979))
56
-
57
- ## 1.22.1 (2025-10-28)
58
-
59
- ### ๐Ÿž Bug Fixes
60
-
61
- * small change ([54e43a6](https://github.com/mojipcmobila-png/release-test/commit/54e43a6e2b6fe0f3b49b0169ec2787292dad05d2))
62
-
63
- ## 1.22.0 (2025-10-28)
64
-
65
- ### ๐Ÿš€ Features
66
-
67
- * small change ([829e0ef](https://github.com/mojipcmobila-png/release-test/commit/829e0efdc55ac284cb343ac11124ad4f2f8cd3a0))
68
-
69
- ## 1.21.7 (2025-10-28)
70
-
71
- ### ๐Ÿž Bug Fixes
72
-
73
- * small change ([3af85f1](https://github.com/mojipcmobila-png/release-test/commit/3af85f17a7a5d366a5c05833b9b32cb36c49b723))
74
-
75
- ## 1.21.6 (2025-10-28)
76
-
77
- ### ๐Ÿž Bug Fixes
78
-
79
- * small chagen ([bce1c45](https://github.com/mojipcmobila-png/release-test/commit/bce1c457d341eeb83a3372d07052361d0de94f75))
80
-
81
- ## 1.21.5 (2025-10-28)
@@ -1,46 +0,0 @@
1
- /**
2
- * @type {import('semantic-release').GlobalConfig}
3
- */
4
- module.exports = {
5
- repositoryUrl: 'https://github.com/mojipcmobila-png/release-test',
6
- branches: [
7
- 'main',
8
- {
9
- name: "develop",
10
- channel: "beta",
11
- prerelease: "beta",
12
- }
13
- ],
14
- plugins: [
15
- '@semantic-release/commit-analyzer',
16
- [
17
- '@semantic-release/release-notes-generator',
18
- {
19
- preset: 'conventionalcommits',
20
- presetConfig: {
21
- types: [
22
- { type: 'feat', section: '๐Ÿš€ Features', hidden: false },
23
- { type: 'fix', section: '๐Ÿž Bug Fixes', hidden: false },
24
- { type: 'chore', section: '๐Ÿงน Chores', hidden: false },
25
- { type: 'docs', section: '๐Ÿ“š Documentation', hidden: false },
26
- { type: 'refactor', section: '๐Ÿ”ง Refactoring', hidden: false },
27
- { type: 'perf', section: 'โšก Performance', hidden: false },
28
- { type: 'test', section: 'โœ… Tests', hidden: false },
29
- { type: 'style', section: '๐ŸŽจ Styles', hidden: false }
30
- ]
31
- }
32
- }
33
- ],
34
- '@semantic-release/changelog',
35
- '@semantic-release/npm',
36
- '@semantic-release/git',
37
- '@semantic-release/github',
38
- [
39
- "@semantic-release/exec",
40
- {
41
- "successCmd": "echo 'new_version=${nextRelease.version}' >> $GITHUB_OUTPUT"
42
-
43
- }
44
- ]
45
- ]
46
- }
package/script.js DELETED
@@ -1,22 +0,0 @@
1
- "use strict"
2
-
3
-
4
- console.log("first")
5
- console.log("first")
6
- console.log("first")
7
- console.log("first")
8
- console.log("first")
9
- console.log("first")
10
- console.log("first")
11
- console.log("first")
12
- console.log("first")
13
- console.log("first")
14
- console.log("first")
15
- console.log("first")
16
- console.log("first")
17
- console.log("first")
18
- console.log("develop-fix-x")
19
- console.log("develop-fix-x")
20
- console.log("develop-fix-x")
21
- console.log("develop-fix-a")
22
- console.log("develop-fix-update-script")