Replace redundant code

This commit is contained in:
Kai Röder 2019-06-02 15:14:48 +02:00
parent 3a92a9f79d
commit b65ce1158c
3 changed files with 7 additions and 25 deletions

View File

@ -2,18 +2,8 @@ import * as path from 'path';
import * as fs from 'fs';
import { readFileAsJson, writeFileAsJson } from '../../lib/helpers';
export function getAngularJson() {
const angularJsonPath = path.resolve('angular.json');
if (!fs.existsSync(angularJsonPath)) {
return false;
}
const jsonContent = fs.readFileSync(angularJsonPath, 'utf8');
return JSON.parse(jsonContent);
}
export function getAngularAppTsConfigPath() {
const angularJson = getAngularJson();
const angularJson = readFileAsJson('angular.json');
const { defaultProject } = angularJson;
const tsConfigPath = angularJson.projects[defaultProject].architect.build.options.tsConfig;
@ -26,20 +16,11 @@ export function getAngularAppTsConfigPath() {
export function getAngularAppTsConfigJson() {
const tsConfigPath = getAngularAppTsConfigPath();
if (!tsConfigPath || !fs.existsSync(path.resolve(tsConfigPath))) {
if (!tsConfigPath) {
return false;
}
const jsonContent = fs.readFileSync(tsConfigPath, 'utf8');
return JSON.parse(jsonContent);
}
export function writeAngularAppTsConfig(tsConfigJson) {
const content = `${JSON.stringify(tsConfigJson, null, 2)}\n`;
const tsConfigPath = getAngularAppTsConfigPath();
if (tsConfigPath) {
fs.writeFileSync(path.resolve(tsConfigPath), content, 'utf8');
}
return readFileAsJson(tsConfigPath);
}
function setStorybookTsconfigExtendsPath(tsconfigJson) {

View File

@ -3,7 +3,7 @@ import path from 'path';
import {
editStorybookTsConfig,
getAngularAppTsConfigJson,
writeAngularAppTsConfig,
getAngularAppTsConfigPath,
} from './angular-helpers';
import {
getVersions,
@ -11,6 +11,7 @@ import {
writePackageJson,
getBabelDependencies,
installDependencies,
writeFileAsJson,
} from '../../lib/helpers';
async function addDependencies(npmOptions) {
@ -65,7 +66,7 @@ function editAngularAppTsConfig() {
}
tsConfigJson.exclude = [...exclude, glob];
writeAngularAppTsConfig(tsConfigJson);
writeFileAsJson(getAngularAppTsConfigPath(), tsConfigJson);
}
export default async npmOptions => {

View File

@ -79,7 +79,7 @@ export function writeFileAsJson(jsonPath, content) {
}
const jsonContent = fs.readFileSync(filePath, 'utf8');
fs.writeFileSync(filePath, JSON.stringify(content, null, 2));
fs.writeFileSync(filePath, `${JSON.stringify(content, null, 2)}\n`);
return true;
}