@breadstone-tools/cem-app 0.0.157 → 0.0.159
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Run.d.ts +4 -1
- package/Run.d.ts.map +1 -1
- package/Run.js +119 -75
- package/Run.js.map +1 -1
- package/package.json +5 -5
package/Run.d.ts
CHANGED
|
@@ -17,8 +17,11 @@ export interface IRunResult {
|
|
|
17
17
|
manifest: {
|
|
18
18
|
schemaVersion: string;
|
|
19
19
|
readme: string;
|
|
20
|
-
modules: Array<
|
|
20
|
+
modules: Array<unknown>;
|
|
21
21
|
};
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Executes the Custom Elements Manifest generation with the given configuration.
|
|
25
|
+
*/
|
|
23
26
|
export declare function run(config: IRunConfig): IRunResult;
|
|
24
27
|
//# sourceMappingURL=Run.d.ts.map
|
package/Run.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Run.d.ts","sourceRoot":"","sources":["../src/Run.ts"],"names":[],"mappings":"AAEA,OAAO,EAAwC,KAAK,OAAO,EAAQ,MAAM,sCAAsC,CAAC;AAEhH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,MAAM,YAAY,CAAC;AAI5B,MAAM,WAAW,UAAU;IACvB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACtB,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"Run.d.ts","sourceRoot":"","sources":["../src/Run.ts"],"names":[],"mappings":"AAEA,OAAO,EAAwC,KAAK,OAAO,EAAQ,MAAM,sCAAsC,CAAC;AAEhH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,MAAM,YAAY,CAAC;AAI5B,MAAM,WAAW,UAAU;IACvB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACtB,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,KAAK,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;IACpD,OAAO,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;IACzB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sBAAsB,CAAC,EAAE,CAAC,EAAE,EAAE,cAAc,YAAY,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK,KAAK,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC;CAC5G;AAED,MAAM,WAAW,UAAU;IACvB,QAAQ,EAAE;QACN,aAAa,EAAE,MAAM,CAAC;QACtB,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;KAC3B,CAAC;CACL;AAmKD;;GAEG;AACH,wBAAgB,GAAG,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CAGlD"}
|
package/Run.js
CHANGED
|
@@ -8,86 +8,130 @@ exports.run = run;
|
|
|
8
8
|
const utilities_1 = require("@breadstone-infrastructure/utilities");
|
|
9
9
|
const cem_core_1 = require("@breadstone-tools/cem-core");
|
|
10
10
|
const typescript_1 = __importDefault(require("typescript"));
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Orchestrates the generation of the Custom Elements Manifest.
|
|
13
|
+
*/
|
|
14
|
+
class RunExecutor {
|
|
15
|
+
// #region Fields
|
|
16
|
+
_config;
|
|
17
|
+
_logger;
|
|
18
|
+
_compiler;
|
|
19
|
+
// #endregion
|
|
20
|
+
// #region Properties
|
|
21
|
+
get outputDirectory() {
|
|
22
|
+
return utilities_1.Path.combine(process.cwd(), this._config.outdir ?? '');
|
|
23
|
+
}
|
|
24
|
+
// #endregion
|
|
25
|
+
// #region Ctor
|
|
26
|
+
/**
|
|
27
|
+
* Creates a new instance of the run executor.
|
|
28
|
+
*
|
|
29
|
+
* @param config The configuration to apply during execution.
|
|
30
|
+
*/
|
|
31
|
+
constructor(config) {
|
|
32
|
+
this._config = config;
|
|
33
|
+
this._logger = config.logger ?? new utilities_1.ConsoleLogger();
|
|
34
|
+
this._compiler = this.initializeTypeScriptCompiler();
|
|
35
|
+
}
|
|
36
|
+
// #endregion
|
|
37
|
+
// #region Methods
|
|
38
|
+
/**
|
|
39
|
+
* Executes the manifest generation workflow.
|
|
40
|
+
*/
|
|
41
|
+
execute() {
|
|
42
|
+
this.logStartupMessages();
|
|
43
|
+
const sources = this.resolveSourceFiles();
|
|
44
|
+
this._logger.debug(` > found ${(0, utilities_1.bold)(sources.length.toString())} sources`);
|
|
45
|
+
const manifestBuilder = this.createManifestBuilder();
|
|
46
|
+
this.ensureOutputDirectory();
|
|
47
|
+
const manifest = manifestBuilder.create(sources);
|
|
48
|
+
const manifestPath = utilities_1.Path.combine(this.outputDirectory, 'custom-elements.json');
|
|
49
|
+
utilities_1.File.writeAllJson(manifestPath, manifest);
|
|
50
|
+
this._logger.log(' manifest created.');
|
|
51
|
+
this._logger.debug(` > ${(0, utilities_1.bold)(manifestPath)}`);
|
|
52
|
+
return {
|
|
53
|
+
manifest: manifest
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
logStartupMessages() {
|
|
57
|
+
this._logger.log(' starting analysis...');
|
|
58
|
+
this._logger.log(' reading sources...');
|
|
59
|
+
}
|
|
60
|
+
initializeTypeScriptCompiler() {
|
|
61
|
+
const configName = 'tsconfig.json';
|
|
62
|
+
const tsConfigFile = typescript_1.default.findConfigFile(process.cwd(), typescript_1.default.sys.fileExists, configName);
|
|
63
|
+
if (!tsConfigFile) {
|
|
64
|
+
throw new Error('No tsconfig file found.');
|
|
65
|
+
}
|
|
66
|
+
const { config } = typescript_1.default.readConfigFile(tsConfigFile, typescript_1.default.sys.readFile);
|
|
67
|
+
const compilerOptions = typescript_1.default.convertCompilerOptionsFromJson(config.compilerOptions ?? {}, '.');
|
|
68
|
+
const program = typescript_1.default.createProgram(this.resolveGlobs(), compilerOptions.options);
|
|
69
|
+
const typeChecker = program.getTypeChecker();
|
|
70
|
+
return {
|
|
71
|
+
program,
|
|
72
|
+
typeChecker
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
resolveGlobs() {
|
|
76
|
+
const ignoredPatterns = [
|
|
77
|
+
'!node_modules/**/*.*',
|
|
78
|
+
'!bower_components/**/*.*',
|
|
79
|
+
'!**/*.test.{js,ts}',
|
|
80
|
+
'!**/*.suite.{js,ts}',
|
|
81
|
+
'!**/*.config.{js,ts}',
|
|
82
|
+
'!**/*.d.ts'
|
|
83
|
+
];
|
|
84
|
+
return [...ignoredPatterns, ...(this._config.globs ?? [])];
|
|
85
|
+
}
|
|
86
|
+
resolveSourceFiles() {
|
|
87
|
+
if (this._config.overrideModuleCreation) {
|
|
88
|
+
return this._config.overrideModuleCreation(typescript_1.default, this.resolveGlobs());
|
|
89
|
+
}
|
|
90
|
+
const files = utilities_1.File.glob(this.resolveGlobs());
|
|
91
|
+
const sourceFiles = files
|
|
92
|
+
.map((file) => this._compiler.program.getSourceFile(file))
|
|
93
|
+
.filter((sourceFile) => sourceFile !== undefined);
|
|
94
|
+
return sourceFiles;
|
|
95
|
+
}
|
|
96
|
+
createManifestBuilder() {
|
|
97
|
+
return new cem_core_1.ManifestBuilder({
|
|
28
98
|
compiler: {
|
|
29
|
-
program:
|
|
30
|
-
typeChecker:
|
|
99
|
+
program: this._compiler.program,
|
|
100
|
+
typeChecker: this._compiler.typeChecker
|
|
31
101
|
},
|
|
32
|
-
debug:
|
|
33
|
-
quiet:
|
|
34
|
-
verbose:
|
|
35
|
-
logger:
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
})
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
102
|
+
debug: this._config.debug,
|
|
103
|
+
quiet: this._config.quiet,
|
|
104
|
+
verbose: this._config.verbose,
|
|
105
|
+
logger: this._logger,
|
|
106
|
+
engine: this.createManifestEngine(),
|
|
107
|
+
framework: this._config.framework
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
createManifestEngine() {
|
|
111
|
+
return new cem_core_1.ManifestEngine({
|
|
112
|
+
compiler: {
|
|
113
|
+
program: this._compiler.program,
|
|
114
|
+
typeChecker: this._compiler.typeChecker
|
|
115
|
+
},
|
|
116
|
+
debug: this._config.debug,
|
|
117
|
+
quiet: this._config.quiet,
|
|
118
|
+
verbose: this._config.verbose,
|
|
119
|
+
logger: this._logger,
|
|
120
|
+
framework: this._config.framework,
|
|
121
|
+
plugins: this._config.plugins ?? []
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
ensureOutputDirectory() {
|
|
125
|
+
if (!utilities_1.Directory.exists(this.outputDirectory)) {
|
|
126
|
+
utilities_1.Directory.create(this.outputDirectory);
|
|
127
|
+
}
|
|
45
128
|
}
|
|
46
|
-
const manifest = manifestBuilder.create(sources);
|
|
47
|
-
const outPath = utilities_1.Path.combine(outdir, 'custom-elements.json');
|
|
48
|
-
utilities_1.File.writeAllJson(outPath, manifest);
|
|
49
|
-
logger.log(' manifest created.');
|
|
50
|
-
logger.debug(` > ${(0, utilities_1.bold)(outPath)}`);
|
|
51
|
-
return {
|
|
52
|
-
manifest: manifest
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
function globs(values) {
|
|
56
|
-
const IGNORE = [
|
|
57
|
-
'!node_modules/**/*.*',
|
|
58
|
-
'!bower_components/**/*.*',
|
|
59
|
-
'!**/*.test.{js,ts}',
|
|
60
|
-
'!**/*.suite.{js,ts}',
|
|
61
|
-
'!**/*.config.{js,ts}',
|
|
62
|
-
'!**/*.d.ts',
|
|
63
|
-
...values
|
|
64
|
-
];
|
|
65
|
-
return IGNORE;
|
|
66
129
|
}
|
|
67
130
|
/**
|
|
68
|
-
*
|
|
69
|
-
* @param ts Global TypeScript object
|
|
70
|
-
* @param globs File globs to analyze
|
|
71
|
-
* @param configName TypeScript config file name to use during analysis
|
|
72
|
-
* @returns The TypeScript program
|
|
131
|
+
* Executes the Custom Elements Manifest generation with the given configuration.
|
|
73
132
|
*/
|
|
74
|
-
function
|
|
75
|
-
const
|
|
76
|
-
|
|
77
|
-
throw new Error('No tsconfig file found.');
|
|
78
|
-
}
|
|
79
|
-
const { config } = ts.readConfigFile(tsConfigFile, ts.sys.readFile);
|
|
80
|
-
const compilerOptions = ts.convertCompilerOptionsFromJson(config.compilerOptions ?? {}, '.');
|
|
81
|
-
const program = ts.createProgram(globs, compilerOptions.options);
|
|
82
|
-
const typeChecker = program.getTypeChecker();
|
|
83
|
-
return {
|
|
84
|
-
program,
|
|
85
|
-
typeChecker
|
|
86
|
-
};
|
|
87
|
-
}
|
|
88
|
-
function moduleCreation(config, program) {
|
|
89
|
-
const files = utilities_1.File.glob(globs(config.globs ?? []));
|
|
90
|
-
const sourceFiles = files.map((file) => program.getSourceFile(file)).filter((sf) => sf !== undefined);
|
|
91
|
-
return sourceFiles;
|
|
133
|
+
function run(config) {
|
|
134
|
+
const executor = new RunExecutor(config);
|
|
135
|
+
return executor.execute();
|
|
92
136
|
}
|
|
93
137
|
//# sourceMappingURL=Run.js.map
|
package/Run.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Run.js","sourceRoot":"","sources":["../src/Run.ts"],"names":[],"mappings":";AAAA,kBAAkB;;;;;
|
|
1
|
+
{"version":3,"file":"Run.js","sourceRoot":"","sources":["../src/Run.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone-tools/cem-app",
|
|
3
3
|
"description": "Custom Elements Manifest App",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.159",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
7
7
|
"repository": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"module": "./Index.js",
|
|
14
14
|
"types": "./Index.d.ts",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@breadstone-infrastructure/utilities": "0.0.
|
|
17
|
-
"@breadstone-tools/cem-core": "^0.0.
|
|
18
|
-
"@breadstone-tools/cem-infrastructure": "^0.0.
|
|
19
|
-
"@breadstone-tools/cem-plugin": "^0.0.
|
|
16
|
+
"@breadstone-infrastructure/utilities": "0.0.159",
|
|
17
|
+
"@breadstone-tools/cem-core": "^0.0.159",
|
|
18
|
+
"@breadstone-tools/cem-infrastructure": "^0.0.159",
|
|
19
|
+
"@breadstone-tools/cem-plugin": "^0.0.159",
|
|
20
20
|
"comment-parser": "^1.4.1",
|
|
21
21
|
"es-module-lexer": "^1.7.0",
|
|
22
22
|
"typescript": "^5.9.3"
|