libre-jqgrid 4.15.9 → 4.15.10

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/README.md CHANGED
@@ -1,2 +1,5 @@
1
1
  # libre-jqgrid
2
2
  Fork from free-jqgrid
3
+ ```
4
+ https://github.com/rany2/jqGrid
5
+ ```
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  }
20
20
  ],
21
21
  "title": "libre jqGrid",
22
- "version": "4.15.9",
22
+ "version": "4.15.10",
23
23
  "description": "maintained version of free-jqGrid",
24
24
  "main": "js/jquery.jqgrid.src.js",
25
25
  "style": "css/ui.jqgrid.css",
@@ -1,23 +0,0 @@
1
- name: Publish Package to npmjs
2
- on: push
3
- jobs:
4
- build:
5
- if: github.repository_owner == 'myridia'
6
- runs-on: ubuntu-latest
7
- permissions:
8
- contents: read
9
- id-token: write
10
- steps:
11
- - uses: actions/checkout@v4
12
- # Setup .npmrc file to publish to npm
13
- - uses: actions/setup-node@v4
14
- with:
15
- node-version: '22.x'
16
- registry-url: 'https://registry.npmjs.org'
17
- - run: npm install --package-lock-only
18
- - run: npm ci
19
- - run: npm publish --provenance --access public
20
- env:
21
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
22
-
23
-