Skip to content

Commit

Permalink
fix(junior): Ember cli build to ESM
Browse files Browse the repository at this point in the history
  • Loading branch information
mcampourcy committed Dec 20, 2024
1 parent bf4ee9b commit f889561
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions junior/ember-cli-build.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
'use strict';

const EmberApp = require('ember-cli/lib/broccoli/ember-app');
import EmberApp from 'ember-cli/lib/broccoli/ember-app';

const sourceMapConfig = {
production: 'source-map',
test: false,
default: 'eval-source-map',
};

module.exports = function (defaults) {
export default function (defaults) {
const app = new EmberApp(defaults, {
sassOptions: {
includePaths: ['node_modules/@1024pix/pix-ui/addon/styles'],
Expand Down Expand Up @@ -50,4 +48,4 @@ module.exports = function (defaults) {
},
},
});
};
}

0 comments on commit f889561

Please sign in to comment.