Skip to content

Commit 95d1847

Browse files
improved error handling to produce more clear errors (#25)
* improved error handling to produce more clear errors
1 parent cb11d66 commit 95d1847

14 files changed

+1948
-1554
lines changed

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
publish-npm:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 22
1818
registry-url: https://registry.npmjs.org/
1919
- run: npm ci
2020
- run: npm run build

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- uses: browser-actions/setup-chrome@latest
1313
- run: chrome --version
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 22
1818
- run: npm ci
1919
- run: npm run build
2020
- run: npm run test

CHANGELOG.MD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to the "@qavajs/memory" will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [1.7.1]
8+
- :rocket: improved error handling to produce more clear errors
9+
710
## [1.7.0]
811
- :rocket: updated parallel function to support qavajs shards
912

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Then value of '$variable' should be equal to '42'
3131
Lib provides capability to set constant values and computed (values that calculated in the moment of call)
3232
```javascript
3333
module.exports = {
34-
CONSTANT: 42,
34+
constant: 42,
3535
now: function() {
3636
return Date.now()
3737
}

0 commit comments

Comments
 (0)