Skip to content

Commit bd3cbb7

Browse files
authored
Merge pull request #140 from thoov/fixing-socketio-ref
treeForVendor correctly grabs the dist files of socket.io
2 parents b2e1059 + b07c48a commit bd3cbb7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
/coverage
12
/bower_components
23
/config/ember-try.js
34
/dist
45
/tests
56
/tmp
7+
/docs
68
**/.gitkeep
79
.bowerrc
810
.editorconfig

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module.exports = {
3131
new Funnel(__dirname + '/vendor', { destDir: this.name }),
3232
new Funnel(path.dirname(urijsPath), { destDir: this.name + '/urijs' }),
3333
new Funnel(path.dirname(mockSocketPath), { destDir: this.name + '/mock-socket' }),
34-
new Funnel(path.dirname(socketIOClientPath), { destDir: this.name + '/socket.io-client' })
34+
new Funnel(path.join(path.dirname(socketIOClientPath), '../dist'), { destDir: this.name + '/socket.io-client' })
3535
]);
3636
},
3737

0 commit comments

Comments
 (0)