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

Commit b19aead

Browse files
test: Correct exclude of brfs loader
1 parent 8282630 commit b19aead

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

.aegir.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
'use strict'
2+
3+
module.exports = {
4+
webpack: {
5+
module: {
6+
postLoaders: [{
7+
test: /\.js$/,
8+
loader: 'transform?brfs',
9+
exclude: [
10+
/js-ipfs-api\/test/
11+
]
12+
}]
13+
}
14+
}
15+
}

package.json

+3-16
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"url": "https://github.com/ipfs/js-ipfs-api"
2727
},
2828
"devDependencies": {
29-
"aegir": "^3.0.2",
29+
"aegir": "^3.0.4",
3030
"chai": "^3.5.0",
3131
"gulp": "^3.9.1",
3232
"interface-ipfs-core": "^0.1.4",
@@ -87,18 +87,5 @@
8787
"bugs": {
8888
"url": "https://github.com/ipfs/js-ipfs-api/issues"
8989
},
90-
"homepage": "https://github.com/ipfs/js-ipfs-api",
91-
"aegir": {
92-
"webpack": {
93-
"module": {
94-
"postLoaders": [
95-
{
96-
"test": "__",
97-
"loader": "transform?brfs",
98-
"include": []
99-
}
100-
]
101-
}
102-
}
103-
}
104-
}
90+
"homepage": "https://github.com/ipfs/js-ipfs-api"
91+
}

0 commit comments

Comments
 (0)