From 9371ee4a373575bc0121a5386642aad6cef5467b Mon Sep 17 00:00:00 2001 From: Jonathan Lui Date: Thu, 6 Dec 2018 12:25:53 -0800 Subject: [PATCH 1/2] fix(docs): change source location to ./build for ts project --- .jsdoc.js | 2 +- synth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.jsdoc.js b/.jsdoc.js index 67169f66..59cb1cdc 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -31,7 +31,7 @@ module.exports = { source: { excludePattern: '(^|\\/|\\\\)[._]', include: [ - 'src' + 'build' ], includePattern: '\\.js$' }, diff --git a/synth.py b/synth.py index 720c859f..c139bd23 100644 --- a/synth.py +++ b/synth.py @@ -4,5 +4,5 @@ logging.basicConfig(level=logging.DEBUG) common_templates = gcp.CommonTemplates() -templates = common_templates.node_library() +templates = common_templates.node_library(source_location='build') s.copy(templates) From d5cdd96e17250d3e82ae99e018cb699185fc8579 Mon Sep 17 00:00:00 2001 From: Jonathan Lui Date: Thu, 6 Dec 2018 14:10:57 -0800 Subject: [PATCH 2/2] change location to build/src --- .jsdoc.js | 2 +- synth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.jsdoc.js b/.jsdoc.js index 59cb1cdc..f9a77c74 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -31,7 +31,7 @@ module.exports = { source: { excludePattern: '(^|\\/|\\\\)[._]', include: [ - 'build' + 'build/src' ], includePattern: '\\.js$' }, diff --git a/synth.py b/synth.py index c139bd23..514ee88f 100644 --- a/synth.py +++ b/synth.py @@ -4,5 +4,5 @@ logging.basicConfig(level=logging.DEBUG) common_templates = gcp.CommonTemplates() -templates = common_templates.node_library(source_location='build') +templates = common_templates.node_library(source_location='build/src') s.copy(templates)