mirror of
https://github.com/bigchaindb/site.git
synced 2024-10-31 23:35:38 +01:00
fix gumshoe path
This commit is contained in:
parent
de4c1836f9
commit
add40e3ba0
@ -1,4 +1,4 @@
|
||||
//=include gumshoe/dist/js/gumshoe.js
|
||||
//=include gumshoejs/dist/js/gumshoe.js
|
||||
|
||||
//=include bigchain/tab.js
|
||||
//=include bigchain/newsletter.js
|
||||
|
@ -159,7 +159,7 @@ export const html = () => src(DIST + '/**/*.html')
|
||||
export const css = () => src(SRC + '/_assets/styles/bigchain.scss')
|
||||
.pipe($.if(!(isProduction || isStaging), $.sourcemaps.init()))
|
||||
.pipe($.sass({
|
||||
includePaths: ['node_modules']
|
||||
includePaths: [__dirname + '/node_modules']
|
||||
}).on('error', $.sass.logError))
|
||||
.pipe($.autoprefixer())
|
||||
.pipe($.if(isProduction || isStaging, $.cleanCss()))
|
||||
@ -204,10 +204,7 @@ export const js = () =>
|
||||
])
|
||||
.pipe($.if(!(isProduction || isStaging), $.sourcemaps.init()))
|
||||
.pipe($.include({
|
||||
includePaths: [
|
||||
__dirname + '/node_modules',
|
||||
SRC + '/_assets/javascripts'
|
||||
]
|
||||
includePaths: ['node_modules', SRC + '/_assets/javascripts']
|
||||
})).on('error', onError)
|
||||
.pipe($.if(isProduction || isStaging, minify())).on('error', onError)
|
||||
.pipe($.if(!(isProduction || isStaging), $.sourcemaps.write()))
|
||||
|
Loading…
Reference in New Issue
Block a user