scraply 1.0.4 → 1.0.5

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.
@@ -2,10 +2,8 @@ name: Publish to NPM
2
2
 
3
3
  on:
4
4
  push:
5
- branches:
6
- - main
7
5
  tags:
8
- - 'v*'
6
+ - 'v*' # Trigger only when a version tag is pushed
9
7
 
10
8
  jobs:
11
9
  publish:
@@ -13,12 +11,12 @@ jobs:
13
11
 
14
12
  steps:
15
13
  - name: Check out the repository
16
- uses: actions/checkout@v2
14
+ uses: actions/checkout@v3
17
15
 
18
16
  - name: Set up Node.js
19
- uses: actions/setup-node@v2
17
+ uses: actions/setup-node@v3
20
18
  with:
21
- node-version: '20.17'
19
+ node-version: '20'
22
20
  registry-url: 'https://registry.npmjs.org/'
23
21
 
24
22
  - name: Install dependencies
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "scraply",
3
3
  "description": "A simple, configurable and functional content scraper",
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "main": "src/scraply.js",
6
6
  "type": "module",
7
7
  "scripts": {