Skip to content

Commit

Permalink
bower to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Dishebh committed Mar 17, 2020
1 parent 0fe00ce commit fff91fb
Show file tree
Hide file tree
Showing 453 changed files with 117,312 additions and 27 deletions.
8 changes: 4 additions & 4 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 : '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'
css : 'node_modules/open-event-theme/dist',
javascript : 'node_modules/open-event-theme/dist',
images : 'node_modules/open-event-theme/dist/themes/default/assets/images',
fonts : 'node_modules/open-event-theme/dist/themes/default/assets/fonts'
}
},

Expand Down
26 changes: 13 additions & 13 deletions ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,26 +59,26 @@ module.exports = function(defaults) {
}
});

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

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

const appTree = app.toTree([]);
Expand Down
Loading

0 comments on commit fff91fb

Please sign in to comment.