mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Replace redundant code
This commit is contained in:
parent
3a92a9f79d
commit
b65ce1158c
25
lib/cli/generators/ANGULAR/angular-helpers.js
vendored
25
lib/cli/generators/ANGULAR/angular-helpers.js
vendored
@ -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) {
|
||||
|
@ -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 => {
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user