libre-jqgrid 4.15.9 → 4.15.11
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 +15 -0
- package/package.json +1 -1
- package/github /workflows/npm.yml +0 -23
package/README.md
CHANGED
|
@@ -1,2 +1,17 @@
|
|
|
1
1
|
# libre-jqgrid
|
|
2
2
|
Fork from free-jqgrid
|
|
3
|
+
```
|
|
4
|
+
https://github.com/rany2/jqGrid
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
```
|
|
9
|
+
npm install libre-jqgrid
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Include
|
|
14
|
+
```
|
|
15
|
+
<link rel="stylesheet" href="../node_modules/libre-jqgrid/css/ui.jqgrid.min.css">
|
|
16
|
+
<script src="../node_modules/libre-jqgrid/dist/jquery.jqgrid.min.js"></script>
|
|
17
|
+
```
|
package/package.json
CHANGED
|
@@ -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
|
-
|