refactor(docs-infra): clean up `stackblitz-builder/builder.js` script (#36071)
- Remove unused dependencies. - Change `var` to `const/let`. - Change regular functions as callbacks to arrow functions. - Remove unnecessary intermediate variables. - Switch from custom `_existsSync()` implementation to built-in `fs.existsSync()`. PR Close #36071
This commit is contained in:
parent
ae3eaf8b16
commit
9cc8bd5f7d
|
@ -132,7 +132,7 @@ class ExampleZipper {
|
||||||
return basePath + file;
|
return basePath + file;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (json.files[0].substr(0, 1) === '!') {
|
if (json.files[0][0] === '!') {
|
||||||
json.files = defaultIncludes.concat(json.files);
|
json.files = defaultIncludes.concat(json.files);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -144,16 +144,16 @@ class ExampleZipper {
|
||||||
|
|
||||||
let gpaths = json.files.map((fileName) => {
|
let gpaths = json.files.map((fileName) => {
|
||||||
fileName = fileName.trim();
|
fileName = fileName.trim();
|
||||||
if (fileName.substr(0, 1) === '!') {
|
if (fileName[0] === '!') {
|
||||||
return '!' + path.join(exampleDirName, fileName.substr(1));
|
return '!' + path.join(exampleDirName, fileName.substr(1));
|
||||||
} else {
|
} else {
|
||||||
return path.join(exampleDirName, fileName);
|
return path.join(exampleDirName, fileName);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Array.prototype.push.apply(gpaths, alwaysExcludes);
|
gpaths.push(...alwaysExcludes);
|
||||||
|
|
||||||
let fileNames = globby.sync(gpaths, { ignore: ['**/node_modules/**']});
|
let fileNames = globby.sync(gpaths, { ignore: ['**/node_modules/**'] });
|
||||||
|
|
||||||
let zip = this._createZipArchive(outputFileName);
|
let zip = this._createZipArchive(outputFileName);
|
||||||
fileNames.forEach((fileName) => {
|
fileNames.forEach((fileName) => {
|
||||||
|
@ -165,7 +165,7 @@ class ExampleZipper {
|
||||||
// zip.append(fs.createReadStream(fileName), { name: relativePath });
|
// zip.append(fs.createReadStream(fileName), { name: relativePath });
|
||||||
let output = regionExtractor()(content, extn).contents;
|
let output = regionExtractor()(content, extn).contents;
|
||||||
|
|
||||||
zip.append(output, { name: relativePath } )
|
zip.append(output, { name: relativePath } );
|
||||||
});
|
});
|
||||||
|
|
||||||
// we need the package.json from _examples root, not the _boilerplate one
|
// we need the package.json from _examples root, not the _boilerplate one
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// Canonical path provides a consistent path (i.e. always forward slashes) across different OSes
|
// Canonical path provides a consistent path (i.e. always forward slashes) across different OSes
|
||||||
var path = require('canonical-path');
|
const path = require('canonical-path');
|
||||||
var Q = require('q');
|
const fs = require('fs-extra');
|
||||||
var _ = require('lodash');
|
const globby = require('globby');
|
||||||
var jsdom = require("jsdom");
|
const jsdom = require('jsdom');
|
||||||
var fs = require("fs-extra");
|
|
||||||
var globby = require('globby');
|
|
||||||
|
|
||||||
var regionExtractor = require('../transforms/examples-package/services/region-parser');
|
const regionExtractor = require('../transforms/examples-package/services/region-parser');
|
||||||
|
|
||||||
class StackblitzBuilder {
|
class StackblitzBuilder {
|
||||||
constructor(basePath, destPath) {
|
constructor(basePath, destPath) {
|
||||||
|
@ -16,26 +14,24 @@ class StackblitzBuilder {
|
||||||
this.destPath = destPath;
|
this.destPath = destPath;
|
||||||
|
|
||||||
// Extract npm package dependencies
|
// Extract npm package dependencies
|
||||||
var packageJson = require(path.join(__dirname, '../examples/shared/boilerplate/cli/package.json'));
|
const packageJson = require(path.join(__dirname, '../examples/shared/boilerplate/cli/package.json'));
|
||||||
this.examplePackageDependencies = packageJson.dependencies;
|
this.examplePackageDependencies = packageJson.dependencies;
|
||||||
|
|
||||||
// Add unit test packages from devDependency for unit test examples
|
// Add unit test packages from devDependency for unit test examples
|
||||||
var devDependencies = packageJson.devDependencies;
|
const devDependencies = packageJson.devDependencies;
|
||||||
this.examplePackageDependencies['jasmine-core'] = devDependencies['jasmine-core'];
|
this.examplePackageDependencies['jasmine-core'] = devDependencies['jasmine-core'];
|
||||||
this.examplePackageDependencies['jasmine-marbles'] = devDependencies['jasmine-marbles'];
|
this.examplePackageDependencies['jasmine-marbles'] = devDependencies['jasmine-marbles'];
|
||||||
|
|
||||||
this.copyrights = {};
|
this.copyrights = this._buildCopyrightStrings();
|
||||||
|
|
||||||
this._buildCopyrightStrings();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
this._checkForOutdatedConfig();
|
this._checkForOutdatedConfig();
|
||||||
|
|
||||||
// When testing it sometimes helps to look a just one example directory like so:
|
// When testing it sometimes helps to look a just one example directory like so:
|
||||||
// var stackblitzPaths = path.join(this.basePath, '**/testing/*stackblitz.json');
|
// const stackblitzPaths = path.join(this.basePath, '**/testing/*stackblitz.json');
|
||||||
var stackblitzPaths = path.join(this.basePath, '**/*stackblitz.json');
|
const stackblitzPaths = path.join(this.basePath, '**/*stackblitz.json');
|
||||||
var fileNames = globby.sync(stackblitzPaths, { ignore: ['**/node_modules/**'] });
|
const fileNames = globby.sync(stackblitzPaths, { ignore: ['**/node_modules/**'] });
|
||||||
fileNames.forEach((configFileName) => {
|
fileNames.forEach((configFileName) => {
|
||||||
try {
|
try {
|
||||||
// console.log('***'+configFileName)
|
// console.log('***'+configFileName)
|
||||||
|
@ -51,12 +47,15 @@ class StackblitzBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
_buildCopyrightStrings() {
|
_buildCopyrightStrings() {
|
||||||
var copyright = 'Copyright Google LLC. All Rights Reserved.\n' +
|
const copyright = 'Copyright Google LLC. All Rights Reserved.\n' +
|
||||||
'Use of this source code is governed by an MIT-style license that\n' +
|
'Use of this source code is governed by an MIT-style license that\n' +
|
||||||
'can be found in the LICENSE file at http://angular.io/license';
|
'can be found in the LICENSE file at http://angular.io/license';
|
||||||
var pad = '\n\n';
|
const pad = '\n\n';
|
||||||
this.copyrights.jsCss = `${pad}/*\n${copyright}\n*/`;
|
|
||||||
this.copyrights.html = `${pad}<!-- \n${copyright}\n-->`;
|
return {
|
||||||
|
jsCss: `${pad}/*\n${copyright}\n*/`,
|
||||||
|
html: `${pad}<!-- \n${copyright}\n-->`,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build stackblitz from JSON configuration file (e.g., stackblitz.json):
|
// Build stackblitz from JSON configuration file (e.g., stackblitz.json):
|
||||||
|
@ -68,30 +67,29 @@ class StackblitzBuilder {
|
||||||
// file: string - name of file to display within the stackblitz (e.g. `"file": "app/app.module.ts"`)
|
// file: string - name of file to display within the stackblitz (e.g. `"file": "app/app.module.ts"`)
|
||||||
_buildStackblitzFrom(configFileName) {
|
_buildStackblitzFrom(configFileName) {
|
||||||
// replace ending 'stackblitz.json' with 'stackblitz.no-link.html' to create output file name;
|
// replace ending 'stackblitz.json' with 'stackblitz.no-link.html' to create output file name;
|
||||||
var outputFileName = `stackblitz.no-link.html`;
|
const outputFileName = configFileName.replace(/stackblitz\.json$/, 'stackblitz.no-link.html');
|
||||||
outputFileName = configFileName.replace(/stackblitz\.json$/, outputFileName);
|
let altFileName;
|
||||||
var altFileName;
|
|
||||||
if (this.destPath && this.destPath.length > 0) {
|
if (this.destPath && this.destPath.length > 0) {
|
||||||
var partPath = path.dirname(path.relative(this.basePath, outputFileName));
|
const partPath = path.dirname(path.relative(this.basePath, outputFileName));
|
||||||
var altFileName = path.join(this.destPath, partPath, path.basename(outputFileName)).replace('.no-link.', '.');
|
altFileName = path.join(this.destPath, partPath, path.basename(outputFileName)).replace('.no-link.', '.');
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
var config = this._initConfigAndCollectFileNames(configFileName);
|
const config = this._initConfigAndCollectFileNames(configFileName);
|
||||||
var postData = this._createPostData(config, configFileName);
|
const postData = this._createPostData(config, configFileName);
|
||||||
this._addDependencies(postData);
|
this._addDependencies(postData);
|
||||||
var html = this._createStackblitzHtml(config, postData);
|
const html = this._createStackblitzHtml(config, postData);
|
||||||
fs.writeFileSync(outputFileName, html, 'utf-8');
|
fs.writeFileSync(outputFileName, html, 'utf-8');
|
||||||
if (altFileName) {
|
if (altFileName) {
|
||||||
var altDirName = path.dirname(altFileName);
|
const altDirName = path.dirname(altFileName);
|
||||||
fs.ensureDirSync(altDirName);
|
fs.ensureDirSync(altDirName);
|
||||||
fs.writeFileSync(altFileName, html, 'utf-8');
|
fs.writeFileSync(altFileName, html, 'utf-8');
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// if we fail delete the outputFile if it exists because it is an old one.
|
// if we fail delete the outputFile if it exists because it is an old one.
|
||||||
if (this._existsSync(outputFileName)) {
|
if (fs.existsSync(outputFileName)) {
|
||||||
fs.unlinkSync(outputFileName);
|
fs.unlinkSync(outputFileName);
|
||||||
}
|
}
|
||||||
if (altFileName && this._existsSync(altFileName)) {
|
if (altFileName && fs.existsSync(altFileName)) {
|
||||||
fs.unlinkSync(altFileName);
|
fs.unlinkSync(altFileName);
|
||||||
}
|
}
|
||||||
throw e;
|
throw e;
|
||||||
|
@ -100,8 +98,8 @@ class StackblitzBuilder {
|
||||||
|
|
||||||
_checkForOutdatedConfig() {
|
_checkForOutdatedConfig() {
|
||||||
// Ensure that nobody is trying to use the old config filenames (i.e. `plnkr.json`).
|
// Ensure that nobody is trying to use the old config filenames (i.e. `plnkr.json`).
|
||||||
var plunkerPaths = path.join(this.basePath, '**/*plnkr.json');
|
const plunkerPaths = path.join(this.basePath, '**/*plnkr.json');
|
||||||
var fileNames = globby.sync(plunkerPaths, { ignore: ['**/node_modules/**'] });
|
const fileNames = globby.sync(plunkerPaths, { ignore: ['**/node_modules/**'] });
|
||||||
|
|
||||||
if (fileNames.length) {
|
if (fileNames.length) {
|
||||||
const readmePath = path.join(__dirname, 'README.md');
|
const readmePath = path.join(__dirname, 'README.md');
|
||||||
|
@ -118,85 +116,87 @@ class StackblitzBuilder {
|
||||||
|
|
||||||
_getPrimaryFile(config) {
|
_getPrimaryFile(config) {
|
||||||
if (config.file) {
|
if (config.file) {
|
||||||
if (!this._existsSync(path.join(config.basePath, config.file))) {
|
if (!fs.existsSync(path.join(config.basePath, config.file))) {
|
||||||
throw new Error(`The specified primary file (${config.file}) does not exist in '${config.basePath}'.`);
|
throw new Error(`The specified primary file (${config.file}) does not exist in '${config.basePath}'.`);
|
||||||
}
|
}
|
||||||
return config.file;
|
return config.file;
|
||||||
} else {
|
} else {
|
||||||
const defaultPrimaryFiles = ['src/app/app.component.html', 'src/app/app.component.ts', 'src/app/main.ts'];
|
const defaultPrimaryFiles = ['src/app/app.component.html', 'src/app/app.component.ts', 'src/app/main.ts'];
|
||||||
const primaryFile = defaultPrimaryFiles.find(fileName => this._existsSync(path.join(config.basePath, fileName)));
|
const primaryFile = defaultPrimaryFiles.find(fileName => fs.existsSync(path.join(config.basePath, fileName)));
|
||||||
|
|
||||||
if (!primaryFile) {
|
if (!primaryFile) {
|
||||||
throw new Error(`None of the default primary files (${defaultPrimaryFiles.join(', ')}) exists in '${config.basePath}'.`);
|
throw new Error(`None of the default primary files (${defaultPrimaryFiles.join(', ')}) exists in '${config.basePath}'.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return primaryFile;
|
return primaryFile;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_createBaseStackblitzHtml(config) {
|
_createBaseStackblitzHtml(config) {
|
||||||
var file = `?file=${this._getPrimaryFile(config)}`;
|
const file = `?file=${this._getPrimaryFile(config)}`;
|
||||||
var action = `https://run.stackblitz.com/api/angular/v1${file}`;
|
const action = `https://run.stackblitz.com/api/angular/v1${file}`;
|
||||||
var html = `<!DOCTYPE html><html lang="en"><body>
|
|
||||||
<form id="mainForm" method="post" action="${action}" target="_self"></form>
|
|
||||||
<script>
|
|
||||||
var embedded = 'ctl=1';
|
|
||||||
var isEmbedded = window.location.search.indexOf(embedded) > -1;
|
|
||||||
|
|
||||||
if (isEmbedded) {
|
return `
|
||||||
var form = document.getElementById('mainForm');
|
<!DOCTYPE html><html lang="en"><body>
|
||||||
var action = form.action;
|
<form id="mainForm" method="post" action="${action}" target="_self"></form>
|
||||||
var actionHasParams = action.indexOf('?') > -1;
|
<script>
|
||||||
var symbol = actionHasParams ? '&' : '?'
|
var embedded = 'ctl=1';
|
||||||
form.action = form.action + symbol + embedded;
|
var isEmbedded = window.location.search.indexOf(embedded) > -1;
|
||||||
}
|
|
||||||
document.getElementById("mainForm").submit();
|
if (isEmbedded) {
|
||||||
</script>
|
var form = document.getElementById('mainForm');
|
||||||
</body></html>`;
|
var action = form.action;
|
||||||
return html;
|
var actionHasParams = action.indexOf('?') > -1;
|
||||||
|
var symbol = actionHasParams ? '&' : '?'
|
||||||
|
form.action = form.action + symbol + embedded;
|
||||||
|
}
|
||||||
|
document.getElementById("mainForm").submit();
|
||||||
|
</script>
|
||||||
|
</body></html>
|
||||||
|
`.trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
_createPostData(config, configFileName) {
|
_createPostData(config, configFileName) {
|
||||||
var postData = {};
|
const postData = {};
|
||||||
|
|
||||||
// If `config.main` is specified, ensure that it points to an existing file.
|
// If `config.main` is specified, ensure that it points to an existing file.
|
||||||
if (config.main && !this._existsSync(path.join(config.basePath, config.main))) {
|
if (config.main && !fs.existsSync(path.join(config.basePath, config.main))) {
|
||||||
throw Error(`The main file ('${config.main}') specified in '${configFileName}' does not exist.`);
|
throw Error(`The main file ('${config.main}') specified in '${configFileName}' does not exist.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
config.fileNames.forEach((fileName) => {
|
config.fileNames.forEach((fileName) => {
|
||||||
var content;
|
let content;
|
||||||
var extn = path.extname(fileName);
|
const extn = path.extname(fileName);
|
||||||
if (extn == '.png') {
|
if (extn === '.png') {
|
||||||
content = this._encodeBase64(fileName);
|
content = this._encodeBase64(fileName);
|
||||||
fileName = fileName.substr(0, fileName.length - 4) + '.base64.png'
|
fileName = `${fileName.slice(0, -extn.length)}.base64${extn}`;
|
||||||
} else {
|
} else {
|
||||||
content = fs.readFileSync(fileName, 'utf-8');
|
content = fs.readFileSync(fileName, 'utf-8');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (extn == '.js' || extn == '.ts' || extn == '.css') {
|
if (extn === '.js' || extn === '.ts' || extn === '.css') {
|
||||||
content = content + this.copyrights.jsCss;
|
content = content + this.copyrights.jsCss;
|
||||||
} else if (extn == '.html') {
|
} else if (extn === '.html') {
|
||||||
content = content + this.copyrights.html;
|
content = content + this.copyrights.html;
|
||||||
}
|
}
|
||||||
// var escapedValue = escapeHtml(content);
|
// const escapedValue = escapeHtml(content);
|
||||||
|
|
||||||
var relativeFileName = path.relative(config.basePath, fileName);
|
let relativeFileName = path.relative(config.basePath, fileName);
|
||||||
|
|
||||||
// Is the main a custom index-xxx.html file? Rename it
|
// Is the main a custom index-xxx.html file? Rename it
|
||||||
if (relativeFileName == config.main) {
|
if (relativeFileName === config.main) {
|
||||||
relativeFileName = 'src/index.html';
|
relativeFileName = 'src/index.html';
|
||||||
}
|
}
|
||||||
|
|
||||||
// A custom main.ts file? Rename it
|
// A custom main.ts file? Rename it
|
||||||
if (/src\/main[-.]\w+\.ts$/.test(relativeFileName)) {
|
if (/src\/main[-.]\w+\.ts$/.test(relativeFileName)) {
|
||||||
relativeFileName = 'src/main.ts'
|
relativeFileName = 'src/main.ts';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (relativeFileName == 'index.html') {
|
if (relativeFileName === 'index.html') {
|
||||||
if (config.description == null) {
|
if (config.description == null) {
|
||||||
// set config.description to title from index.html
|
// set config.description to title from index.html
|
||||||
var matches = /<title>(.*)<\/title>/.exec(content);
|
const matches = /<title>(.*)<\/title>/.exec(content);
|
||||||
if (matches) {
|
if (matches) {
|
||||||
config.description = matches[1];
|
config.description = matches[1];
|
||||||
}
|
}
|
||||||
|
@ -208,28 +208,26 @@ class StackblitzBuilder {
|
||||||
postData[`files[${relativeFileName}]`] = content;
|
postData[`files[${relativeFileName}]`] = content;
|
||||||
});
|
});
|
||||||
|
|
||||||
var tags = ['angular', 'example'].concat(config.tags || []);
|
const tags = ['angular', 'example', ...config.tags || []];
|
||||||
tags.forEach(function(tag,ix) {
|
tags.forEach((tag, ix) => postData[`tags[${ix}]`] = tag);
|
||||||
postData['tags[' + ix + ']'] = tag;
|
|
||||||
});
|
|
||||||
|
|
||||||
postData.description = "Angular Example - " + config.description;
|
postData.description = `Angular Example - ${config.description}`;
|
||||||
|
|
||||||
return postData;
|
return postData;
|
||||||
}
|
}
|
||||||
|
|
||||||
_createStackblitzHtml(config, postData) {
|
_createStackblitzHtml(config, postData) {
|
||||||
var baseHtml = this._createBaseStackblitzHtml(config);
|
const baseHtml = this._createBaseStackblitzHtml(config);
|
||||||
var doc = jsdom.jsdom(baseHtml);
|
const doc = jsdom.jsdom(baseHtml);
|
||||||
var form = doc.querySelector('form');
|
const form = doc.querySelector('form');
|
||||||
_.forEach(postData, (value, key) => {
|
|
||||||
var ele = this._htmlToElement(doc, '<input type="hidden" name="' + key + '">');
|
|
||||||
ele.setAttribute('value', value);
|
|
||||||
form.appendChild(ele)
|
|
||||||
});
|
|
||||||
var html = doc.documentElement.outerHTML;
|
|
||||||
|
|
||||||
return html;
|
for(const [key, value] of Object.entries(postData)) {
|
||||||
|
const ele = this._htmlToElement(doc, `<input type="hidden" name="${key}">`);
|
||||||
|
ele.setAttribute('value', value);
|
||||||
|
form.appendChild(ele);
|
||||||
|
}
|
||||||
|
|
||||||
|
return doc.documentElement.outerHTML;
|
||||||
}
|
}
|
||||||
|
|
||||||
_encodeBase64(file) {
|
_encodeBase64(file) {
|
||||||
|
@ -237,36 +235,20 @@ class StackblitzBuilder {
|
||||||
return fs.readFileSync(file, { encoding: 'base64' });
|
return fs.readFileSync(file, { encoding: 'base64' });
|
||||||
}
|
}
|
||||||
|
|
||||||
_existsSync(filename) {
|
|
||||||
try {
|
|
||||||
fs.accessSync(filename);
|
|
||||||
return true;
|
|
||||||
} catch(ex) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
_htmlToElement(document, html) {
|
_htmlToElement(document, html) {
|
||||||
var div = document.createElement('div');
|
const div = document.createElement('div');
|
||||||
div.innerHTML = html;
|
div.innerHTML = html;
|
||||||
return div.firstChild;
|
return div.firstChild;
|
||||||
}
|
}
|
||||||
|
|
||||||
_initConfigAndCollectFileNames(configFileName) {
|
_initConfigAndCollectFileNames(configFileName) {
|
||||||
var configDir = path.dirname(configFileName);
|
const config = this._parseConfig(configFileName);
|
||||||
var configSrc = fs.readFileSync(configFileName, 'utf-8');
|
|
||||||
try {
|
|
||||||
var config = (configSrc && configSrc.trim().length) ? JSON.parse(configSrc) : {};
|
|
||||||
config.basePath = configDir; // assumes 'stackblitz.json' is at `/src` level.
|
|
||||||
} catch (e) {
|
|
||||||
throw new Error(`Stackblitz config - unable to parse json file: ${configFileName}\n${e}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
var defaultIncludes = ['**/*.ts', '**/*.js', '**/*.css', '**/*.html', '**/*.md', '**/*.json', '**/*.png', '**/*.svg'];
|
const defaultIncludes = ['**/*.ts', '**/*.js', '**/*.css', '**/*.html', '**/*.md', '**/*.json', '**/*.png', '**/*.svg'];
|
||||||
var boilerplateIncludes = ['src/environments/*.*', 'angular.json', 'src/polyfills.ts'];
|
const boilerplateIncludes = ['src/environments/*.*', 'angular.json', 'src/polyfills.ts'];
|
||||||
if (config.files) {
|
if (config.files) {
|
||||||
if (config.files.length > 0) {
|
if (config.files.length > 0) {
|
||||||
if (config.files[0].substr(0, 1) == '!') {
|
if (config.files[0][0] === '!') {
|
||||||
config.files = defaultIncludes.concat(config.files);
|
config.files = defaultIncludes.concat(config.files);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -275,10 +257,10 @@ class StackblitzBuilder {
|
||||||
}
|
}
|
||||||
config.files = config.files.concat(boilerplateIncludes);
|
config.files = config.files.concat(boilerplateIncludes);
|
||||||
|
|
||||||
var includeSpec = false;
|
let includeSpec = false;
|
||||||
var gpaths = config.files.map(function(fileName) {
|
const gpaths = config.files.map((fileName) => {
|
||||||
fileName = fileName.trim();
|
fileName = fileName.trim();
|
||||||
if (fileName.substr(0,1) == '!') {
|
if (fileName[0] === '!') {
|
||||||
return '!' + path.join(config.basePath, fileName.substr(1));
|
return '!' + path.join(config.basePath, fileName.substr(1));
|
||||||
} else {
|
} else {
|
||||||
includeSpec = includeSpec || /\.spec\.(ts|js)$/.test(fileName);
|
includeSpec = includeSpec || /\.spec\.(ts|js)$/.test(fileName);
|
||||||
|
@ -286,7 +268,7 @@ class StackblitzBuilder {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var defaultExcludes = [
|
const defaultExcludes = [
|
||||||
'!**/e2e/**/*.*',
|
'!**/e2e/**/*.*',
|
||||||
'!**/tsconfig.json',
|
'!**/tsconfig.json',
|
||||||
'!**/package.json',
|
'!**/package.json',
|
||||||
|
@ -308,10 +290,21 @@ class StackblitzBuilder {
|
||||||
|
|
||||||
gpaths.push(...defaultExcludes);
|
gpaths.push(...defaultExcludes);
|
||||||
|
|
||||||
config.fileNames = globby.sync(gpaths, { ignore: ["**/node_modules/**"] });
|
config.fileNames = globby.sync(gpaths, { ignore: ['**/node_modules/**'] });
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_parseConfig(configFileName) {
|
||||||
|
try {
|
||||||
|
const configSrc = fs.readFileSync(configFileName, 'utf-8');
|
||||||
|
const config = (configSrc && configSrc.trim().length) ? JSON.parse(configSrc) : {};
|
||||||
|
config.basePath = path.dirname(configFileName); // assumes 'stackblitz.json' is at `/src` level.
|
||||||
|
return config;
|
||||||
|
} catch (e) {
|
||||||
|
throw new Error(`Stackblitz config - unable to parse json file: ${configFileName}\n${e}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = StackblitzBuilder;
|
module.exports = StackblitzBuilder;
|
||||||
|
|
Loading…
Reference in New Issue