Skip to content

Commit

Permalink
Support require instruction as module import
Browse files Browse the repository at this point in the history
  • Loading branch information
gurobokum committed May 17, 2019
1 parent 04f23a0 commit bd183ac
Show file tree
Hide file tree
Showing 6 changed files with 3,523 additions and 1,660 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#JS
node_modules/
dist/

#VIM
*.sw?
4 changes: 4 additions & 0 deletions build/gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,7 @@ gulp.task 'sandboxServer', ->
child.on 'close', (code) -> console.log(code.toString())

gulp.task 'sandbox', (gulp.series 'build', (gulp.parallel 'watch', 'sandboxServer'))

gulp.task 'mocha', ->
runChild 'npx mocha ../test/**/*.spec.js'
gulp.task 'test', (gulp.series 'build', 'mocha')
Loading

0 comments on commit bd183ac

Please sign in to comment.