mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Improve tsconfig.app.json detection for app/angular (#6940)
Improve tsconfig.app.json detection for app/angular
This commit is contained in:
commit
640d2ad84a
37
lib/cli/generators/ANGULAR/angular-helpers.js
vendored
Normal file
37
lib/cli/generators/ANGULAR/angular-helpers.js
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
import * as path from 'path';
|
||||
import * as fs from 'fs';
|
||||
import { readFileAsJson, writeFileAsJson } from '../../lib/helpers';
|
||||
|
||||
export function getAngularAppTsConfigPath() {
|
||||
const angularJson = readFileAsJson('angular.json');
|
||||
const { defaultProject } = angularJson;
|
||||
const tsConfigPath = angularJson.projects[defaultProject].architect.build.options.tsConfig;
|
||||
|
||||
if (!tsConfigPath || !fs.existsSync(path.resolve(tsConfigPath))) {
|
||||
return false;
|
||||
}
|
||||
return tsConfigPath;
|
||||
}
|
||||
|
||||
export function getAngularAppTsConfigJson() {
|
||||
const tsConfigPath = getAngularAppTsConfigPath();
|
||||
|
||||
if (!tsConfigPath) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return readFileAsJson(tsConfigPath);
|
||||
}
|
||||
|
||||
function setStorybookTsconfigExtendsPath(tsconfigJson) {
|
||||
const angularProjectTsConfigPath = getAngularAppTsConfigPath();
|
||||
const newTsconfigJson = { ...tsconfigJson };
|
||||
newTsconfigJson.extends = `../${angularProjectTsConfigPath}`;
|
||||
return newTsconfigJson;
|
||||
}
|
||||
|
||||
export function editStorybookTsConfig(tsconfigPath) {
|
||||
let tsConfigJson = readFileAsJson(tsconfigPath);
|
||||
tsConfigJson = setStorybookTsconfigExtendsPath(tsConfigJson);
|
||||
writeFileAsJson(tsconfigPath, tsConfigJson);
|
||||
}
|
@ -1,13 +1,17 @@
|
||||
import mergeDirs from 'merge-dirs';
|
||||
import path from 'path';
|
||||
import {
|
||||
editStorybookTsConfig,
|
||||
getAngularAppTsConfigJson,
|
||||
getAngularAppTsConfigPath,
|
||||
} from './angular-helpers';
|
||||
import {
|
||||
getVersions,
|
||||
getPackageJson,
|
||||
writePackageJson,
|
||||
getBabelDependencies,
|
||||
installDependencies,
|
||||
getAngularAppTsConfigJson,
|
||||
writeAngularAppTsConfig,
|
||||
writeFileAsJson,
|
||||
} from '../../lib/helpers';
|
||||
|
||||
async function addDependencies(npmOptions) {
|
||||
@ -62,7 +66,7 @@ function editAngularAppTsConfig() {
|
||||
}
|
||||
|
||||
tsConfigJson.exclude = [...exclude, glob];
|
||||
writeAngularAppTsConfig(tsConfigJson);
|
||||
writeFileAsJson(getAngularAppTsConfigPath(), tsConfigJson);
|
||||
}
|
||||
|
||||
export default async npmOptions => {
|
||||
@ -70,4 +74,5 @@ export default async npmOptions => {
|
||||
|
||||
await addDependencies(npmOptions);
|
||||
editAngularAppTsConfig();
|
||||
editStorybookTsConfig(path.resolve('./.storybook/tsconfig.json'));
|
||||
};
|
||||
|
@ -1,20 +1,9 @@
|
||||
{
|
||||
"extends": "../src/tsconfig.app.json",
|
||||
"extends": "%SET_DURING_SB_INIT%",
|
||||
"compilerOptions": {
|
||||
"types": [
|
||||
"node"
|
||||
]
|
||||
"types": ["node"]
|
||||
},
|
||||
"exclude": [
|
||||
"../src/test.ts",
|
||||
"../src/**/*.spec.ts",
|
||||
"../projects/**/*.spec.ts"
|
||||
],
|
||||
"include": [
|
||||
"../src/**/*",
|
||||
"../projects/**/*"
|
||||
],
|
||||
"files": [
|
||||
"./typings.d.ts"
|
||||
]
|
||||
"exclude": ["../src/test.ts", "../src/**/*.spec.ts", "../projects/**/*.spec.ts"],
|
||||
"include": ["../src/**/*", "../projects/**/*"],
|
||||
"files": ["./typings.d.ts"]
|
||||
}
|
||||
|
@ -62,44 +62,25 @@ export function getBowerJson() {
|
||||
return JSON.parse(jsonContent);
|
||||
}
|
||||
|
||||
export function getAngularJson() {
|
||||
const angularJsonPath = path.resolve('angular.json');
|
||||
if (!fs.existsSync(angularJsonPath)) {
|
||||
export function readFileAsJson(jsonPath) {
|
||||
const filePath = path.resolve(jsonPath);
|
||||
if (!fs.existsSync(filePath)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const jsonContent = fs.readFileSync(angularJsonPath, 'utf8');
|
||||
const jsonContent = fs.readFileSync(filePath, 'utf8');
|
||||
return JSON.parse(jsonContent);
|
||||
}
|
||||
|
||||
export function getAngularAppTsConfigPath() {
|
||||
const angularJson = getAngularJson();
|
||||
const { defaultProject } = angularJson;
|
||||
const tsConfigPath = angularJson.projects[defaultProject].architect.build.options.tsConfig;
|
||||
|
||||
if (!tsConfigPath || !fs.existsSync(path.resolve(tsConfigPath))) {
|
||||
return false;
|
||||
}
|
||||
return tsConfigPath;
|
||||
}
|
||||
|
||||
export function getAngularAppTsConfigJson() {
|
||||
const tsConfigPath = getAngularAppTsConfigPath();
|
||||
|
||||
if (!tsConfigPath || !fs.existsSync(path.resolve(tsConfigPath))) {
|
||||
export function writeFileAsJson(jsonPath, content) {
|
||||
const filePath = path.resolve(jsonPath);
|
||||
if (!fs.existsSync(filePath)) {
|
||||
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');
|
||||
}
|
||||
const jsonContent = fs.readFileSync(filePath, 'utf8');
|
||||
fs.writeFileSync(filePath, `${JSON.stringify(content, null, 2)}\n`);
|
||||
return true;
|
||||
}
|
||||
|
||||
export function writePackageJson(packageJson) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user