Skip to content
This repository was archived by the owner on Mar 4, 2022. It is now read-only.

Commit 37e33da

Browse files
authored
BUG: isBuilderTask doesn't correctly infer on Windows. (#140)
- **Actual issue**: Fix builder passthrough determination on Windows. This is just @GEMI 's fix from #139 that I've copied with lots of other stuff going on. Fixes #138 - Travis CI fails weirdly from an istanbul / node-mkdirp issue on Node 6's somewhere by `6.10.2`. I've captured the issue in a ticket and just pinned `6.9.2` - I've honed down the `.npmignore` to make the package smaller. - Removed npm@2 from testing on Node 5 and 6.
1 parent 25385e4 commit 37e33da

File tree

6 files changed

+1880
-30
lines changed

6 files changed

+1880
-30
lines changed

.npmignore

+8-23
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,8 @@
1-
\.git
2-
\.hg
3-
4-
\.DS_Store
5-
\.project
6-
bower_components
7-
node_modules
8-
npm-debug\.log*
9-
phantomjsdriver\.log
10-
11-
# Build
12-
dist
13-
*/dist
14-
build
15-
*/build
16-
coverage
17-
Procfile
18-
19-
# NPM
20-
test
21-
.eslint*
22-
.istanbul*
23-
.travis*
1+
/*
2+
!/bin
3+
!/lib
4+
!CONTRIBUTING.md
5+
!HISTORY.md
6+
!LICENSE.txt
7+
!README.md
8+
!package.json

.travis.yml

+15-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ node_js:
55
- "0.12"
66
- "4"
77
- "5"
8-
- "6"
8+
# By `v6.10.2` we hit this error:
9+
# - https://github.com/FormidableLabs/builder/issues/141
10+
# - https://github.com/substack/node-mkdirp/pull/110
11+
# so pin for now.
12+
- "6.9.5"
913

1014
# Use container-based Travis infrastructure.
1115
sudo: false
@@ -15,10 +19,16 @@ branches:
1519
- master
1620

1721
env:
18-
matrix:
19-
- TEST_NPM_VERSION=2
20-
- TEST_NPM_VERSION=3
21-
- TEST_NPM_VERSION=4
22+
- TEST_NPM_VERSION=2
23+
- TEST_NPM_VERSION=3
24+
- TEST_NPM_VERSION=4
25+
26+
matrix:
27+
exclude:
28+
- node_js: "5"
29+
env: TEST_NPM_VERSION=2
30+
- node_js: "6.9.5"
31+
env: TEST_NPM_VERSION=2
2232

2333
before_install:
2434
# GUI for real browsers.

HISTORY.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
History
22
=======
33

4+
## Unreleased
5+
6+
* Correctly infer if a builder passthrough task on Windows. ( [@GEMI][] )
7+
[#138](https://github.com/FormidableLabs/builder/issues/138)
8+
49
## 3.2.1
510

611
* Update module pattern documentation.
@@ -171,4 +176,5 @@ Other:
171176
* Initial release.
172177

173178
[@exogen]: https://github.com/exogen
179+
[@GEMI]: https://github.com/GEMI
174180
[@ryan-roemer]: https://github.com/ryan-roemer

lib/task.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ Task.prototype.toString = function () {
8181
* @returns {Boolean} Is this task a passthrough?
8282
*/
8383
Task.prototype.isBuilderTask = function (task) {
84-
var builder = path.basename(this._script);
84+
// mac: '/PATH/TO/node_modules/.bin/builder'
85+
// win: 'X:\\PATH\\TO\\node_modules\\builder\\bin\\builder.js',
86+
var builder = path.basename(this._script, ".js");
8587
var taskParts = task.split(/\s+/);
8688
var taskBin = taskParts[0];
8789

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"eslint": "^1.7.3",
4242
"eslint-config-defaults": "^7.0.1",
4343
"eslint-plugin-filenames": "^0.1.2",
44-
"istanbul": "^0.4.1",
44+
"istanbul": "^0.4.5",
4545
"mocha": "^2.3.4",
4646
"mock-fs": "^3.7.0",
4747
"sinon": "^1.17.2",

0 commit comments

Comments
 (0)