Skip to content
This repository was archived by the owner on Jul 23, 2019. It is now read-only.

Commit 07e57ea

Browse files
author
Alessandro Bellini
committed
version 2.1.2: windows improved compatibility
1 parent 6e04002 commit 07e57ea

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 2.1.2
4+
- `--no-bin-link` added to build to install zed bundles' modules on windows based machines
5+
36
### 2.1.1
47
- `.allowUnknownOption()` added to build command in order to allow custom flags
58

lib/install.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
collector.manifests().then((list) => {
1919
R.forEach((manifest) => {
2020
shell.cd(path.dirname(manifest));
21-
shell.exec(`npm install`);
21+
shell.exec(`npm install --no-bin-links`);
2222
}, R.keys(list.valid));
2323

2424
shell.cd(cwd);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "antelope",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "Spryker frontend automation tool",
55
"main": "antelope.js",
66
"preferGlobal": "true",

0 commit comments

Comments
 (0)