Skip to content

Commit 3b958ba

Browse files
build 4.0.1
1 parent 70d7514 commit 3b958ba

File tree

24 files changed

+38148
-2
lines changed

24 files changed

+38148
-2
lines changed

bin/update-package-json-for-publish.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ modules.forEach(function (mod) {
4747
return deps; // do nothing its a local file
4848
}
4949

50-
dep = dep.split('/')[0]; // split colors/safe to be colors
50+
if (dep[0] !== '@') {
51+
dep = dep.split('/')[0]; // split colors/safe to be colors
52+
}
5153

5254
if (topPkg.dependencies[dep]) {
5355
if (modules.indexOf(dep) !== -1) { // core pouchdb-* module

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pouchdb-server-monorepo",
33
"private": true,
4-
"version": "4.0.0",
4+
"version": "4.0.1",
55
"scripts": {
66
"unit-tests": "./bin/unit-tests.sh",
77
"test-pouchdb": "./bin/test-setup.sh && ./bin/test-pouchdb.sh",

0 commit comments

Comments
 (0)