@febog/table-filter 0.0.3 → 0.1.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.
@@ -13,11 +13,14 @@ jobs:
13
13
  publish:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
- - uses: actions/checkout@v4
16
+ - name: Checkout
17
+ uses: actions/checkout@v6
17
18
 
18
- - uses: actions/setup-node@v4
19
+ - name: Setup Node for npm publishing
20
+ uses: actions/setup-node@v6
19
21
  with:
20
22
  node-version: '24'
21
23
  registry-url: 'https://registry.npmjs.org'
22
24
 
23
- - run: npm publish
25
+ - name: Publish to npm
26
+ run: npm publish
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # table-filter
2
2
 
3
+ [![Publish package](https://github.com/febog/table-filter/actions/workflows/publish.yml/badge.svg)](https://github.com/febog/table-filter/actions/workflows/publish.yml)
4
+ [![NPM Version](https://img.shields.io/npm/v/%40febog%2Ftable-filter)](https://www.npmjs.com/package/@febog/table-filter)
5
+ [![NPM License](https://img.shields.io/npm/l/%40febog%2Ftable-filter)](https://www.npmjs.com/package/@febog/table-filter)
6
+
3
7
  A minimal way to filter HTML table rows.
4
8
 
5
9
  ## Background
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@febog/table-filter",
3
- "version": "0.0.3",
3
+ "version": "0.1.0",
4
4
  "description": "A minimal way to filter HTML table rows.",
5
5
  "keywords": [
6
6
  "javascript",
@@ -19,6 +19,7 @@
19
19
  "author": "Felipe Bojorquez",
20
20
  "main": "table-filter.js",
21
21
  "scripts": {
22
+ "postversion": "git push && git push --tags",
22
23
  "test": "echo \"Error: no test specified\" && exit 1"
23
24
  }
24
25
  }