Skip to content

Commit 9ade1d1

Browse files
committed
revert native dom dispatcher conditional
1 parent 4425ec7 commit 9ade1d1

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

config/ember-try.js

-10
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ module.exports = {
1111
resolutions: {
1212
'ember': '~1.13.0'
1313
}
14-
},
15-
npm: {
16-
devDependencies: {
17-
'ember-native-dom-event-dispatcher': null
18-
}
1914
}
2015
},
2116
{
@@ -27,11 +22,6 @@ module.exports = {
2722
resolutions: {
2823
'ember': 'lts-2-4'
2924
}
30-
},
31-
npm: {
32-
devDependencies: {
33-
'ember-native-dom-event-dispatcher': null
34-
}
3525
}
3626
},
3727
{

ember-cli-build.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ module.exports = function(defaults) {
1111
}
1212
};
1313

14-
if (project.findAddonByName('ember-native-dom-event-dispatcher') && process.env.DEPLOY_TARGET === undefined) {
15-
options.vendorFiles = { 'jquery.js': null };
16-
}
14+
// see: http://blog.shipshape.io/ember-without-jquery/
15+
// currently not working
16+
// if (project.findAddonByName('ember-native-dom-event-dispatcher') && process.env.DEPLOY_TARGET === undefined) {
17+
// options.vendorFiles = { 'jquery.js': null };
18+
// }
1719

1820
let app = new EmberAddon(defaults, options);
1921

0 commit comments

Comments
 (0)