Skip to content

Commit d790874

Browse files
authored
fix: compatible for no config (#222)
* feat: compatible for no config * fix: typo
1 parent 02e6a28 commit d790874

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

src/plugin/impl.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import path from 'path';
22
import { loadMetaFile } from '../utils/load_meta_file';
3-
import { exisis } from '../utils/fs';
3+
import { exists } from '../utils/fs';
44
import { PLUGIN_META_FILENAME } from '../constant';
55
import { PluginConfigItem, PluginCreateOptions, PluginMap, PluginMetadata, PluginType } from './types';
66
import { getPackagePath } from './common';
@@ -68,12 +68,12 @@ export class Plugin implements PluginType {
6868

6969
private async checkAndLoadMetadata() {
7070
// check import path
71-
if (!await exisis(this.importPath)) {
71+
if (!await exists(this.importPath)) {
7272
throw new Error(`load plugin <${this.name}> import path ${this.importPath} is not exists.`);
7373
}
7474
const metaFilePath = path.resolve(this.importPath, PLUGIN_META_FILENAME);
7575
try {
76-
if (!await exisis(metaFilePath)) {
76+
if (!await exists(metaFilePath)) {
7777
throw new Error(`load plugin <${this.name}> import path ${this.importPath} can't find meta file.`);
7878
}
7979
this.metadata = await loadMetaFile(metaFilePath);

src/scanner/scan.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import ConfigurationHandler, { ConfigObject } from '../configuration';
1818
import { FrameworkConfig, FrameworkHandler } from '../framework';
1919
import { PluginType, PluginFactory } from '../plugin';
2020
import { ScanUtils } from './utils';
21+
import { exists } from '../utils/fs';
2122
import { PluginConfigItem, PluginMetadata } from '../plugin/types';
2223
import { getConfigMetaFromFilename } from '../loader/utils/config_file_meta';
2324
import { Application } from '../types';
@@ -67,7 +68,8 @@ export class Scanner {
6768
if (Array.isArray(envs) && envs.length) {
6869
return envs;
6970
}
70-
const configFileList = await fs.readdir(path.resolve(root, configDir));
71+
const absoluteConfigDir = path.resolve(root, configDir);
72+
const configFileList = (await exists(absoluteConfigDir)) ? await fs.readdir(absoluteConfigDir) : [];
7173
const envSet: Set<string> = new Set([ARTUS_DEFAULT_CONFIG_ENV.DEFAULT]);
7274
for (const configFilename of configFileList) {
7375
if (configFilename.endsWith('.d.ts')) {
@@ -169,7 +171,7 @@ export class Scanner {
169171
return {};
170172
}
171173
const root = path.resolve(baseDir, configDir);
172-
const configFileList = await fs.readdir(root);
174+
const configFileList = (await exists(root)) ? await fs.readdir(root) : [];
173175
const container = new Container(ArtusInjectEnum.DefaultContainerName);
174176
container.set({ type: ConfigurationHandler });
175177
container.set({

src/utils/fs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from 'fs/promises';
22

3-
export async function exisis(path: string): Promise<boolean> {
3+
export async function exists(path: string): Promise<boolean> {
44
try {
55
await fs.access(path);
66
} catch {

test/fixtures/app_without_config/config/.gitkeep

Whitespace-only changes.

test/scanner.test.ts

+7
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,11 @@ describe('test/scanner.test.ts', () => {
9494
expect(manifest.items).toBeDefined();
9595
expect(manifest.items.length).toBe(3);
9696
});
97+
98+
it('should not throw when scan application without configdir', async () => {
99+
const scanner = new Scanner({ needWriteFile: false, extensions: ['.ts', '.js', '.json'] });
100+
const scanResults = await scanner.scan(path.resolve(__dirname, './fixtures/app_without_config'));
101+
const { default: manifest } = scanResults;
102+
expect(manifest.items.find(item => item.loader === 'config')).toBeUndefined();
103+
});
97104
});

0 commit comments

Comments
 (0)