Skip to content

Commit

Permalink
fix(create): add building-rollup to starter-app
Browse files Browse the repository at this point in the history
  • Loading branch information
thepassle authored and daKmoR committed May 7, 2019
1 parent 70e24d5 commit 561f153
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/create/src/generators/starter-app/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/* eslint-disable no-console */
import LintingMixin from '../linting/index.js';
import TestingMixin from '../testing/index.js';
import BuildingRollupMixin from '../building-rollup/index.js';

const StarterAppMixin = subclass =>
class extends TestingMixin(LintingMixin(subclass)) {
class extends BuildingRollupMixin(TestingMixin(LintingMixin(subclass))) {
async execute() {
await super.execute();
const { tagName } = this.templateData;
Expand Down

0 comments on commit 561f153

Please sign in to comment.