Skip to content

Commit

Permalink
remove bower
Browse files Browse the repository at this point in the history
  • Loading branch information
Dishebh committed Mar 15, 2020
1 parent 89b93ac commit 978b6e6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ module.exports = function(environment) {

SemanticUI: {
source: {
css : 'bower_components/open-event-theme/dist',
javascript : 'bower_components/open-event-theme/dist',
images : 'bower_components/open-event-theme/dist/themes/default/assets/images',
fonts : 'bower_components/open-event-theme/dist/themes/default/assets/fonts'
css : 'node_modules/@bower_components/open-event-theme/dist',
javascript : 'node_modules/@bower_components/open-event-theme/dist',
images : 'node_modules/@bower_components/open-event-theme/dist/themes/default/assets/images',
fonts : 'node_modules/@bower_components/open-event-theme/dist/themes/default/assets/fonts'
}
},

Expand Down Expand Up @@ -175,7 +175,7 @@ module.exports = function(environment) {
'media-src' : '\'none\''
};
}

if (environment === 'development') {
// ENV.APP.LOG_RESOLVER = true;
// ENV.APP.LOG_ACTIVE_GENERATION = true;
Expand Down
14 changes: 7 additions & 7 deletions ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,22 @@ module.exports = function(defaults) {
}
});

app.import('bower_components/semantic-ui-calendar/dist/calendar.min.css');
app.import('bower_components/Croppie/croppie.css');
app.import('node_modules/@bower_components/semantic-ui-calendar/dist/calendar.min.css');
app.import('node_modules/@bower_components/Croppie/croppie.css');

app.import('bower_components/semantic-ui-calendar/dist/calendar.min.js', {
app.import('node_modules/@bower_components/semantic-ui-calendar/dist/calendar.min.js', {
using: [{ transformation: 'fastbootShim' }]
});
app.import('bower_components/wysihtml/dist/wysihtml-toolbar.min.js', {
app.import('node_modules/@bower_components/wysihtml/dist/wysihtml-toolbar.min.js', {
using: [{ transformation: 'fastbootShim' }]
});
app.import('bower_components/Croppie/croppie.min.js', {
app.import('node_modules/@bower_components/Croppie/croppie.min.js', {
using: [{ transformation: 'fastbootShim' }]
});
app.import('bower_components/tinyColorPicker/jqColorPicker.min.js', {
app.import('node_modules/@bower_components/tinyColorPicker/jqColorPicker.min.js', {
using: [{ transformation: 'fastbootShim' }]
});
app.import('bower_components/js-polyfills/xhr.js', {
app.import('node_modules/@bower_components/js-polyfills/xhr.js', {
using: [{ transformation: 'fastbootShim' }]
});
app.import('vendor/jquery-ui.min.js', {
Expand Down

0 comments on commit 978b6e6

Please sign in to comment.