apextree 1.4.0 → 1.4.2
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/publish.yml +20 -0
- package/.husky/commit-msg +1 -0
- package/.husky/pre-push +1 -0
- package/CHANGELOG.md +25 -0
- package/commitlint.config.js +5 -0
- package/package.json +14 -3
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: Publish to npm
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
- uses: actions/setup-node@v4
|
|
14
|
+
with:
|
|
15
|
+
node-version: '20'
|
|
16
|
+
registry-url: 'https://registry.npmjs.org' # Or your custom registry
|
|
17
|
+
- run: npm install
|
|
18
|
+
- run: npm publish
|
|
19
|
+
env:
|
|
20
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
npx --no -- commitlint --edit "$1"
|
package/.husky/pre-push
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
npm run release && git push --follow-tags --no-verify
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [1.4.2](https://github.com/apexcharts/apextree/compare/v1.4.1...v1.4.2) (2025-07-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add npm install in workflow ([ba334a9](https://github.com/apexcharts/apextree/commit/ba334a9be71901e317187c60d23d4a1029f7db54))
|
|
11
|
+
|
|
12
|
+
### 1.4.1 (2025-07-27)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* implement commitlint and auto versioning ([de25914](https://github.com/apexcharts/apextree/commit/de2591430a16e4e4a59787168e95709dae376b81))
|
|
18
|
+
* revert version ([8f31b83](https://github.com/apexcharts/apextree/commit/8f31b83c97a243c465c2265e6cb9af4d70241eb6))
|
|
19
|
+
|
|
20
|
+
### 1.4.1 (2025-07-27)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* implement commitlint and auto versioning ([de25914](https://github.com/apexcharts/apextree/commit/de2591430a16e4e4a59787168e95709dae376b81))
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apextree",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"dependencies": {
|
|
5
|
+
"@dagrejs/dagre": "^1.1.4",
|
|
5
6
|
"@svgdotjs/svg.js": "^3.2.0",
|
|
6
|
-
"@svgdotjs/svg.panzoom.js": "^2.1.2"
|
|
7
|
-
"@dagrejs/dagre": "^1.1.4"
|
|
7
|
+
"@svgdotjs/svg.panzoom.js": "^2.1.2"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"types": "./index.d.ts",
|
|
@@ -22,5 +22,16 @@
|
|
|
22
22
|
"default": "./apextree.min.js"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@commitlint/cli": "^19.8.1",
|
|
28
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
29
|
+
"commitlint": "^19.8.1",
|
|
30
|
+
"husky": "^9.1.7",
|
|
31
|
+
"standard-version": "^9.5.0"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"prepare": "husky",
|
|
35
|
+
"release": "standard-version"
|
|
25
36
|
}
|
|
26
37
|
}
|