Skip to content

Commit 727a4ab

Browse files
authored
Merge pull request #1 from trinketapp/fix/suspendable-imports
Fix/suspendable imports
2 parents 36284dc + 3cc385f commit 727a4ab

File tree

7 files changed

+3811
-476
lines changed

7 files changed

+3811
-476
lines changed

.gitignore

+1-36
Original file line numberDiff line numberDiff line change
@@ -1,36 +1 @@
1-
# Windows image file caches
2-
Thumbs.db
3-
ehthumbs.db
4-
5-
# Folder config file
6-
Desktop.ini
7-
8-
# Recycle Bin used on file shares
9-
$RECYCLE.BIN/
10-
11-
# Windows Installer files
12-
*.cab
13-
*.msi
14-
*.msm
15-
*.msp
16-
17-
# =========================
18-
# Operating System Files
19-
# =========================
20-
21-
# OSX
22-
# =========================
23-
24-
.DS_Store
25-
.AppleDouble
26-
.LSOverride
27-
28-
# Icon must ends with two \r.
29-
Icon
30-
31-
# Thumbnails
32-
._*
33-
34-
# Files that might appear on external disk
35-
.Spotlight-V100
36-
.Trashes
1+
node_modules

dist/numpy/__init__.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/numpy/random/__init__.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var dest = ['dist/numpy/', 'numpy/random/']
1111
// run all watch tasks :)
1212
gulp.task('default', ['clean', 'minify']);
1313

14-
gulp.task('minify', function () {
14+
gulp.task('minify', ['clean'], function () {
1515
files.forEach(function(f) {
1616
gulp.src(f, {base: './'})
1717
.pipe(uglify({mangle: false}))

0 commit comments

Comments
 (0)