Skip to content

Commit f9d017d

Browse files
author
Trung Le
committed
[texture_3d] - Moved gl-matrix to a third-party folder and ignore it in gulpfile
1 parent 66e4ccf commit f9d017d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var jshint = require('gulp-jshint');
55
var gulp = require('gulp');
66

7-
var jsHintFiles = ['**/*.js', '**/*.html', '!node_modules/**'];
7+
var jsHintFiles = ['**/*.js', '**/*.html', '!node_modules/**', '!samples/third-party/**'];
88

99
gulp.task('default', ['jsHint']);
1010

@@ -23,4 +23,4 @@ gulp.task('jsHint-watch', function() {
2323
.pipe(jshint())
2424
.pipe(jshint.reporter('jshint-stylish'));
2525
});
26-
});
26+
});

Diff for: samples/texture_3d.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
99
<link rel="stylesheet" href="style.css">
1010
<script src="utility.js"></script>
11-
<script src="gl-matrix.js"></script>
11+
<script src="third-party/gl-matrix.js"></script>
1212
<script src="noise3D.js"></script>
1313
</head>
1414

File renamed without changes.

0 commit comments

Comments
 (0)