bug fixes for releasing

This commit is contained in:
Westly Wright
2018-07-03 12:29:41 -07:00
parent 7ce258ca1a
commit 8a81dbf660
2 changed files with 26 additions and 13 deletions
+19 -2
View File
@@ -31,13 +31,13 @@ gulp.task('dev', ['build-dev'], () => {
});
gulp.task('build', (cb) => {
runSequence('pub-delete', 'sass', 'build:vendor', 'build:app', 'fonts', 'img', 'hugo', () => {
runSequence('pub-delete', 'sass', 'build:vendor', 'build:app', 'fonts', 'img', 'hugo', 'build:search-index', () => {
cb();
});
});
gulp.task('build-staging', (cb) => {
runSequence('pub-delete', 'sass', 'build:vendor', 'build:app', 'fonts', 'img', 'hugo-staging', () => {
runSequence('pub-delete', 'sass', 'build:vendor', 'build:app', 'fonts', 'img', 'hugo-staging', 'build:search-index', () => {
cb();
});
});
@@ -165,3 +165,20 @@ gulp.task('cms-delete', () => {
gulp.task('pub-delete', () => {
return del(['public/**', '!public']);
});
gulp.task('build:search-index', (cb) => {
const env = process.env;
env.ALGOLIA_APP_ID = '30NEY6C9UY';
env.ALGOLIA_INDEX_NAME = isProduction ? 'prod_docs' : 'dev_docs';
env.ALGOLIA_INDEX_FILE = 'public/algolia.json';
const opts = {
stdio: 'inherit',
env: env
};
return spawn(process.cwd()+'/scripts/build-algolia.js', opts).on('close', (/* code */) => {
cb();
});
});
+7 -11
View File
@@ -9,23 +9,19 @@ const atomicalgolia = require("atomic-algolia");
const fs = require('fs');
const indexName = "dev_docs"
const nue = [];
const { spawnSync } = require('child_process');
spawnSync('gulp', ['build'], { stdio: 'inherit' });
const rawdata = fs.readFileSync('public/algolia.json');
const nodes = JSON.parse(rawdata);
const rawdata = fs.readFileSync('public/algolia.json');
const nodes = JSON.parse(rawdata);
nodes.forEach(node => {
const dom = new JSDOM(node.content);
const content = dom.window.document.body; //post content wrapped in a body tag
const contentChildren = content.children; // all the children of the body tag
const paragraphOut = {
anchor: '#',
title: '',
content: '',
postref: node.objectID,
objectID: md5(node.permalink),
anchor: '#',
title: '',
content: '',
postref: node.objectID,
objectID: md5(node.permalink),
permalink: node.permalink
};