cytoscape-js-node-resizer 1.0.3 → 1.0.6

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,21 @@
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: Node.js Package
5
+
6
+ on:
7
+ release:
8
+ types: [created]
9
+
10
+ jobs:
11
+ publish-npm:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 20
18
+ registry-url: https://registry.npmjs.org/
19
+ - run: npm publish
20
+ env:
21
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
package/README.md CHANGED
@@ -6,7 +6,7 @@ A replacement for [cytoscape.js-noderesize](https://github.com/jhonatandarosa/cy
6
6
 
7
7
  ![Export-1735055174526](https://github.com/user-attachments/assets/3ea4de90-9720-40d0-a87c-f80456dec1d0)
8
8
 
9
- This package was created and maintained by [NodeLand team](https://nodeland.io). A whiteboard solution that is heavy dependant on Cytoscape to represent notes as nodes in the canvas.
9
+ This package was created and maintained by [NodeLand. A whiteboard solution](https://nodeland.io) that is heavy dependant on Cytoscape to represent notes as nodes in the canvas.
10
10
 
11
11
  ## Installation
12
12
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
 
3
3
  "name": "cytoscape-js-node-resizer",
4
- "version": "1.0.3",
4
+ "version": "1.0.6",
5
5
  "description": "A zero dependency extension for Cytoscape.js that adds node resizing functionality.",
6
6
  "main": "resizeHandler.js",
7
7
  "scripts": {