Skip to content

Commit 3a9fabe

Browse files
committed
Fix gulpfile for src assembly
1 parent f68a1b4 commit 3a9fabe

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
1818

1919
### Fixed
2020

21-
-
21+
- Gulp not concatenating files properly
2222

2323
---
2424

gulpfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ gulp.task( 'build:aeq-core', function () {
3939
return gulp.src( [
4040
'lib/intro.js',
4141
'lib/main.js',
42+
'lib/**/*.js',
4243
'!lib/ui/**/*.js',
43-
'!lib/outro.js',
44-
'lib/**/*.js'
44+
'!lib/outro.js'
4545
] )
4646
.pipe( replace( /(\/\*.*?\*\/\n+)?(var )?aeq = \(function ?\(aeq\) \{/g, '' ) )
4747
.pipe( replace( /'use strict';/g, '' ) )
@@ -142,10 +142,10 @@ gulp.task( 'update-version', gulp.series( 'update-version:aeq', 'build:docs' ) )
142142

143143
gulp.task( 'lint', function () {
144144
return gulp.src( [
145-
'!lib/intro.js',
146145
'lib/main.js',
147-
'!lib/outro.js',
148-
'lib/**/*.js'
146+
'lib/**/*.js',
147+
'!lib/intro.js',
148+
'!lib/outro.js'
149149
] )
150150
.pipe( eslint() )
151151
.pipe( eslint.format() );

0 commit comments

Comments
 (0)