Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot da0616ac45 chore(release): 0.0.2-develop.2 [skip ci]
## [0.0.2-develop.2](https://git.lumeweb.com/LumeWeb/kernel-swarm/compare/v0.0.2-develop.1...v0.0.2-develop.2) (2023-07-01)

### Bug Fixes

* rename var nextId ([99b355f](99b355f7a1))
2023-07-01 09:22:41 +00:00
Derrick Hammer 99b355f7a1
fix: rename var nextId 2023-07-01 05:21:30 -04:00
4 changed files with 12 additions and 5 deletions

View File

@ -1 +1,8 @@
## [0.0.2-develop.2](https://git.lumeweb.com/LumeWeb/kernel-swarm/compare/v0.0.2-develop.1...v0.0.2-develop.2) (2023-07-01)
### Bug Fixes
* rename var nextId ([99b355f](https://git.lumeweb.com/LumeWeb/kernel-swarm/commit/99b355f7a1e8711d7d475d88cbd09338de0e8f1f))
## [0.0.2-develop.1](https://git.lumeweb.com/LumeWeb/kernel-swarm/compare/v0.0.1...v0.0.2-develop.1) (2023-07-01) ## [0.0.2-develop.1](https://git.lumeweb.com/LumeWeb/kernel-swarm/compare/v0.0.1...v0.0.2-develop.1) (2023-07-01)

4
npm-shrinkwrap.json generated
View File

@ -24,7 +24,7 @@
"@types/b4a": "^1.6.0", "@types/b4a": "^1.6.0",
"presetter": "*" "presetter": "*"
}, },
"version": "0.0.2-develop.1" "version": "0.0.2-develop.2"
}, },
"node_modules/@aashutoshrathi/word-wrap": { "node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6", "version": "1.2.6",
@ -21927,5 +21927,5 @@
} }
} }
}, },
"version": "0.0.2-develop.1" "version": "0.0.2-develop.2"
} }

View File

@ -33,6 +33,6 @@
"@types/b4a": "^1.6.0", "@types/b4a": "^1.6.0",
"presetter": "*" "presetter": "*"
}, },
"version": "0.0.2-develop.1", "version": "0.0.2-develop.2",
"readme": "ERROR: No README data found!" "readme": "ERROR: No README data found!"
} }

View File

@ -47,9 +47,9 @@ function idFactory(start = 1) {
let id = start; let id = start;
return function nextId() { return function nextId() {
const nextId = id; const _nextId = id;
id += 1; id += 1;
return nextId; return _nextId;
}; };
} }