Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Commit

Permalink
fix(babel): include babel-polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
jlegrone committed Nov 24, 2017
1 parent 4055b71 commit dbfd05a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/generator-semantic-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"yeoman-test": "^1.6.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"chalk": "^2.1.0",
"yeoman-generator": "^1.0.0",
"yosay": "^2.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
const Generator = require('yeoman-generator');
const yosay = require('yosay');
import 'babel-polyfill';
import Generator from 'yeoman-generator';
import yosay from 'yosay';

const options = {
moduleName: 'module-name',
Expand Down

0 comments on commit dbfd05a

Please # to comment.