Skip to content

Commit b2fcedf

Browse files
committed
ci) remove peer devDependencies from the monorepo that are used for tests
... because lerna seems to order its topology by dependencies and devDependencies as equivalent
1 parent a626e59 commit b2fcedf

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ SHELL := bash
88
.ONESHELL:
99
MAKEFLAGS += --warn-undefined-variables
1010
MAKEFLAGS += --no-builtin-rules
11+
CONCURRENCY := 8
1112

1213
default: all
1314

1415
all::
15-
$(LERNA) --concurrency 8 exec --stream -- $(MAKE)
16+
$(LERNA) --concurrency $(CONCURRENCY) exec --stream -- $(MAKE)
1617

1718
test:
1819
$(LERNA) exec --stream -- $(MAKE) test

packages/bind/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"tslib": "^2.2.0"
1313
},
1414
"devDependencies": {
15-
"@tko/binding.foreach": "^4.0.0-alpha9.0"
1615
},
1716
"files": [
1817
"dist/",
@@ -47,4 +46,4 @@
4746
},
4847
"./helpers/*": "./helpers/*"
4948
}
50-
}
49+
}

packages/binding.template/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
]
3636
},
3737
"devDependencies": {
38-
"@tko/binding.if": "^4.0.0-alpha9.0"
3938
},
4039
"licenses": [
4140
{
@@ -50,4 +49,4 @@
5049
},
5150
"./helpers/*": "./helpers/*"
5251
}
53-
}
52+
}

packages/utils.parser/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
"tslib": "^2.2.0"
1515
},
1616
"devDependencies": {
17-
"@tko/bind": "^4.0.0-alpha9.0",
18-
"@tko/binding.core": "^4.0.0-alpha9.0",
19-
"@tko/provider.databind": "^4.0.0-alpha9.0"
2017
},
2118
"karma": {
2219
"frameworks": [
@@ -47,4 +44,4 @@
4744
"type": "git",
4845
"url": "git+https://github.com/knockout/tko.git"
4946
}
50-
}
47+
}

0 commit comments

Comments
 (0)