Skip to content

Commit 125c97a

Browse files
v2 (#28) (#29)
* implemented v2 steps-memory
1 parent 75d33a4 commit 125c97a

File tree

12 files changed

+575
-1642
lines changed

12 files changed

+575
-1642
lines changed

.github/workflows/pull-request.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
pull_request:
55
branches:
66
- main
7+
- v1
8+
- v2
79

810
jobs:
911
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/steps-memory" will be documented in this fil
44

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

7+
## [2.0.0]
8+
- updated validation dependency
9+
710
## [0.17.0]
811
Breaking change: moved _@qavajs/validation_ to peer dependencies
912
After update please install latest version of @qavajs/validation package

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ Step library to work with memory module
88
## Configuration
99

1010
```javascript
11-
module.exports = {
12-
default: {
13-
require: ['@qavajs/steps-memory/index.js']
14-
}
11+
export default {
12+
require: ['@qavajs/steps-memory/index.js']
1513
}
1614
```

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
require('./lib/memory.js');
2-
require('./lib/validation.js');
3-
require('./lib/types.js');
2+
require('./lib/validation.js');

0 commit comments

Comments
 (0)