@intelligentgraphics/ig.gfx.packager 3.1.0-alpha.6 → 3.1.0
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/build/bin.mjs +1 -2
- package/build/bin.mjs.map +1 -1
- package/build/{cli-CRt1pnL8.mjs → cli-DIedP7qK.mjs} +8 -14
- package/build/cli-DIedP7qK.mjs.map +1 -0
- package/build/{dependencies-DzwnAMHr.mjs → dependencies-COlDsLND.mjs} +2 -2
- package/build/{dependencies-DzwnAMHr.mjs.map → dependencies-COlDsLND.mjs.map} +1 -1
- package/build/{generateIndex-1_US73VT.mjs → generateIndex-C3QM6b_P.mjs} +15 -13
- package/build/generateIndex-C3QM6b_P.mjs.map +1 -0
- package/build/{generateParameterType-DSWCBqzV.mjs → generateParameterType-BQWvx09Q.mjs} +3 -3
- package/build/{generateParameterType-DSWCBqzV.mjs.map → generateParameterType-BQWvx09Q.mjs.map} +1 -1
- package/build/{index-BIqEoSQH.mjs → index-DwMieljj.mjs} +7 -7
- package/build/{index-BIqEoSQH.mjs.map → index-DwMieljj.mjs.map} +1 -1
- package/build/{index-Sj6AX2Pu.mjs → index-DzhYnNye.mjs} +45 -17
- package/build/index-DzhYnNye.mjs.map +1 -0
- package/build/{postinstall-DLxLg3tD.mjs → postinstall-C--lHX5F.mjs} +4 -4
- package/build/{postinstall-DLxLg3tD.mjs.map → postinstall-C--lHX5F.mjs.map} +1 -1
- package/build/{publishNpm-ByIPsGI3.mjs → publishNpm-XfGrMd4N.mjs} +6 -6
- package/build/{publishNpm-ByIPsGI3.mjs.map → publishNpm-XfGrMd4N.mjs.map} +1 -1
- package/build/{rollup-Dspsy6kv.mjs → rollup-C1CqoDDv.mjs} +18 -120
- package/build/rollup-C1CqoDDv.mjs.map +1 -0
- package/build/{scripts-BmQnbRem.mjs → scripts-B3noxiX3.mjs} +2 -2
- package/build/{scripts-BmQnbRem.mjs.map → scripts-B3noxiX3.mjs.map} +1 -1
- package/build/{versionFile-CK9FMt3L.mjs → versionFile-DfWPXq6d.mjs} +4 -4
- package/build/{versionFile-CK9FMt3L.mjs.map → versionFile-DfWPXq6d.mjs.map} +1 -1
- package/lib/lib.mjs +53 -24
- package/package.json +4 -5
- package/readme.md +81 -43
- package/build/cli-CRt1pnL8.mjs.map +0 -1
- package/build/generateIndex-1_US73VT.mjs.map +0 -1
- package/build/index-Sj6AX2Pu.mjs.map +0 -1
- package/build/rollup-Dspsy6kv.mjs.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rollup-C1CqoDDv.mjs","sources":["../src/commands/build/rollup.ts"],"sourcesContent":["import * as path from \"path\";\nimport ts from \"typescript\";\nimport * as os from \"os\";\nimport resolve from \"resolve\";\nimport { rollup, watch, RollupOutput, RollupOptions } from \"rollup\";\nimport rollupPluginNodeResolve from \"@rollup/plugin-node-resolve\";\nimport rollupPluginTypescript from \"@rollup/plugin-typescript\";\nimport rollupPluginBabel from \"@rollup/plugin-babel\";\nimport rollupPluginCommonJs from \"@rollup/plugin-commonjs\";\nimport rollupPluginJson from \"@rollup/plugin-json\";\nimport rollupPluginAlias from \"@rollup/plugin-alias\";\nimport babelPresetEs5 from \"@intelligentgraphics/ig.gfx.packager-babel-preset-es5\";\n\nimport { bundleFromEntryFile } from \"@intelligentgraphics/declarationbundler\";\n\nimport { CreatorPackage, PackageLocation } from \"../../lib/package\";\nimport { BuildArtefacts, BuilderEnvironment, BuildParticipant } from \"./types\";\nimport { resolveScriptPackageEntryModule } from \"../../lib/scripts\";\n\nexport function createRollupBuildParticipant(\n\tlocation: PackageLocation,\n\tmanifest: CreatorPackage,\n\toutDir: string,\n\tskipDeclarations: boolean,\n): BuildParticipant {\n\treturn (env: BuilderEnvironment) => {\n\t\tenv.onBuildStart();\n\n\t\t(async () => {\n\t\t\ttry {\n\t\t\t\tconst rollupConfig = getRollupConfig(\n\t\t\t\t\tlocation,\n\t\t\t\t\tmanifest,\n\t\t\t\t\toutDir,\n\t\t\t\t\tskipDeclarations,\n\t\t\t\t\tenv,\n\t\t\t\t);\n\n\t\t\t\tconst build = await rollup(rollupConfig);\n\n\t\t\t\tconst output = await build.generate(rollupConfig.output);\n\n\t\t\t\tenv.onBuildEnd({\n\t\t\t\t\ttype: \"success\",\n\t\t\t\t\tartefacts: processRollupOutput(\n\t\t\t\t\t\toutput,\n\t\t\t\t\t\tlocation,\n\t\t\t\t\t\tmanifest,\n\t\t\t\t\t\trollupConfig.input,\n\t\t\t\t\t\tskipDeclarations,\n\t\t\t\t\t),\n\t\t\t\t});\n\t\t\t} catch (err) {\n\t\t\t\tenv.onBuildEnd({ type: \"error\", error: err });\n\t\t\t}\n\t\t})();\n\n\t\treturn {\n\t\t\tdestroy: () => {},\n\t\t};\n\t};\n}\n\nexport function createRollupWatchBuildParticipant(\n\tlocation: PackageLocation,\n\tmanifest: CreatorPackage,\n\toutDir: string,\n\tskipDeclarations: boolean,\n): BuildParticipant {\n\treturn (env: BuilderEnvironment) => {\n\t\tenv.onBuildStart();\n\n\t\tconst rollupConfig = getRollupConfig(\n\t\t\tlocation,\n\t\t\tmanifest,\n\t\t\toutDir,\n\t\t\tskipDeclarations,\n\t\t\tenv,\n\t\t);\n\n\t\tconst watcher = watch({\n\t\t\t...rollupConfig,\n\t\t\twatch: {\n\t\t\t\tskipWrite: true,\n\t\t\t},\n\t\t});\n\n\t\twatcher.on(\"event\", async (event) => {\n\t\t\tswitch (event.code) {\n\t\t\t\tcase \"BUNDLE_START\":\n\t\t\t\t\tenv.onBuildStart();\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"BUNDLE_END\":\n\t\t\t\t\tconst output = await event.result.generate(\n\t\t\t\t\t\trollupConfig.output!,\n\t\t\t\t\t);\n\t\t\t\t\ttry {\n\t\t\t\t\t\tenv.onBuildEnd({\n\t\t\t\t\t\t\ttype: \"success\",\n\t\t\t\t\t\t\tartefacts: processRollupOutput(\n\t\t\t\t\t\t\t\toutput,\n\t\t\t\t\t\t\t\tlocation,\n\t\t\t\t\t\t\t\tmanifest,\n\t\t\t\t\t\t\t\trollupConfig.input,\n\t\t\t\t\t\t\t\tskipDeclarations,\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t});\n\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\tenv.onBuildEnd({\n\t\t\t\t\t\t\ttype: \"error\",\n\t\t\t\t\t\t\terror: err,\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tevent.result.close();\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"ERROR\":\n\t\t\t\t\tenv.onBuildEnd({\n\t\t\t\t\t\ttype: \"error\",\n\t\t\t\t\t\terror: Object.assign(\n\t\t\t\t\t\t\tnew Error(event.error.message),\n\t\t\t\t\t\t\tevent.error,\n\t\t\t\t\t\t),\n\t\t\t\t\t});\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t});\n\n\t\treturn {\n\t\t\tdestroy: () => watcher.close(),\n\t\t};\n\t};\n}\n\nfunction getRollupConfig(\n\tlocation: PackageLocation,\n\tmanifest: CreatorPackage,\n\toutDir: string,\n\tskipDeclarations: boolean,\n\tenv: BuilderEnvironment,\n) {\n\tconst entryModule = resolveScriptPackageEntryModule(location, manifest);\n\n\tif (entryModule === undefined) {\n\t\tthrow new Error(`Could not find an entry module`);\n\t}\n\n\treturn {\n\t\tinput: entryModule,\n\t\tplugins: [\n\t\t\trollupPluginNodeResolve(),\n\t\t\trollupPluginCommonJs(),\n\t\t\trollupPluginJson(),\n\t\t\trollupPluginAlias({\n\t\t\t\tentries: [\n\t\t\t\t\t{\n\t\t\t\t\t\tfind: /^core-js(.*)/,\n\t\t\t\t\t\treplacement: path.join(\n\t\t\t\t\t\t\tpath.dirname(\n\t\t\t\t\t\t\t\tresolve.sync(\"core-js\", {\n\t\t\t\t\t\t\t\t\tbasedir: import.meta.dirname,\n\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\"/$1\",\n\t\t\t\t\t\t),\n\t\t\t\t\t},\n\t\t\t\t],\n\t\t\t}),\n\t\t\trollupPluginTypescript({\n\t\t\t\tcompilerOptions: {\n\t\t\t\t\trootDir: skipDeclarations ? undefined : location.scriptsDir,\n\t\t\t\t\tdeclaration: !skipDeclarations,\n\t\t\t\t\tdeclarationDir: skipDeclarations ? undefined : outDir,\n\t\t\t\t\tmodule: \"esnext\",\n\t\t\t\t\ttarget: \"esnext\",\n\t\t\t\t},\n\t\t\t\ttsconfig: path.join(location.scriptsDir, \"tsconfig.json\"),\n\t\t\t\tremoveComments: false,\n\t\t\t\tfilterRoot: skipDeclarations ? false : undefined,\n\t\t\t\tincremental: false,\n\t\t\t\tnoEmitOnError: false,\n\t\t\t}),\n\t\t\trollupPluginBabel({\n\t\t\t\tpresets: [[babelPresetEs5, {}]],\n\t\t\t\ttargets: {\n\t\t\t\t\tie: \"11\",\n\t\t\t\t},\n\t\t\t\tbabelHelpers: \"bundled\",\n\t\t\t\textensions: [\".ts\", \".js\"],\n\t\t\t\tsourceMaps: true,\n\t\t\t\texclude: /core-js/,\n\t\t\t}),\n\t\t],\n\t\toutput: {\n\t\t\tformat: \"iife\",\n\t\t\tname: manifest.Scope ?? manifest.Package,\n\t\t\tdir: outDir,\n\t\t\tsourcemap: \"hidden\",\n\t\t},\n\t\tonLog: createLogger(env),\n\t} satisfies RollupOptions;\n}\n\nfunction createLogger(env: BuilderEnvironment): RollupOptions[\"onLog\"] {\n\treturn (level, log, _handler) => {\n\t\tenv.log(log.message);\n\t};\n}\n\nfunction processRollupOutput(\n\toutput: RollupOutput,\n\tlocation: PackageLocation,\n\tmanifest: CreatorPackage,\n\tentryModulePath: string,\n\tskipDeclarations: boolean,\n): BuildArtefacts {\n\tconst [primaryChunk, ...otherOutputs] = output.output;\n\n\tconst assets = otherOutputs.filter((chunk) => chunk.type === \"asset\");\n\n\tconst sourceMap = assets.find((asset) =>\n\t\tasset.fileName.endsWith(\".js.map\"),\n\t);\n\n\tlet declarations: string | undefined;\n\n\tif (!skipDeclarations) {\n\t\tconst declarationFileMap = new Map(\n\t\t\tassets\n\t\t\t\t.filter((asset) => asset.fileName.endsWith(\".d.ts\"))\n\t\t\t\t.map((asset) => {\n\t\t\t\t\treturn [\n\t\t\t\t\t\tpath\n\t\t\t\t\t\t\t.resolve(location.scriptsDir, asset.fileName)\n\t\t\t\t\t\t\t.replaceAll(\"\\\\\", \"/\"),\n\t\t\t\t\t\tasset.source as string,\n\t\t\t\t\t];\n\t\t\t\t}),\n\t\t);\n\n\t\tconst entryModulePathWithDts = path.join(\n\t\t\tpath.dirname(entryModulePath),\n\t\t\tpath.basename(entryModulePath, path.extname(entryModulePath)) +\n\t\t\t\t\".d.ts\",\n\t\t);\n\n\t\tdeclarations = bundleTSDeclarations(\n\t\t\tdeclarationFileMap,\n\t\t\tentryModulePathWithDts,\n\t\t\tmanifest.Scope ?? manifest.Package,\n\t\t);\n\t}\n\n\treturn {\n\t\tjs: primaryChunk.code,\n\t\tdeclarations,\n\t\tsourceMap: sourceMap?.source as string,\n\t};\n}\n\nconst referenceRegex = /(\\/\\/\\/ ?<reference .+\\/>$)/;\n\nfunction bundleTSDeclarations(\n\tfiles: Map<string, string>,\n\tentryFileName: string,\n\tnamespace: string,\n) {\n\tconst references: string[] = [];\n\n\tfor (const [_fileName, content] of files) {\n\t\tif (content.indexOf(\"reference\") === -1) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst lines = content.split(os.EOL);\n\n\t\tfor (let index = 0; index < lines.length; index++) {\n\t\t\tconst line = lines[index];\n\t\t\tconst match = line.match(referenceRegex);\n\n\t\t\tif (match === null) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (!references.includes(match[1])) {\n\t\t\t\treferences.push(match[1]);\n\t\t\t}\n\t\t}\n\t}\n\n\tconst compilerOptions: ts.CompilerOptions = {\n\t\tremoveComments: false,\n\t};\n\n\tconst host = ts.createCompilerHost(compilerOptions, true);\n\thost.fileExists = (fileName) => files.has(fileName);\n\thost.readFile = (fileName) => files.get(fileName);\n\n\tconst program = ts.createProgram({\n\t\thost,\n\t\toptions: compilerOptions,\n\t\trootNames: [entryFileName],\n\t});\n\n\tconst mainFile = program.getSourceFile(entryFileName);\n\n\tif (mainFile === undefined) {\n\t\tthrow new Error(\n\t\t\t`Unexpected: Failed to find compiled declaration entry module`,\n\t\t);\n\t}\n\n\tconst result = bundleFromEntryFile(\n\t\tnamespace,\n\t\tmainFile,\n\t\tprogram,\n\t\thost,\n\t\tprogram.getTypeChecker(),\n\t\tcompilerOptions,\n\t);\n\treturn [...references, result].join(os.EOL);\n}\n"],"names":["createRollupBuildParticipant","location","manifest","outDir","skipDeclarations","env","onBuildStart","rollupConfig","getRollupConfig","build","rollup","output","generate","onBuildEnd","type","artefacts","processRollupOutput","input","err","error","destroy","createRollupWatchBuildParticipant","watcher","watch","skipWrite","on","event","code","result","close","Object","assign","Error","message","entryModule","resolveScriptPackageEntryModule","undefined","plugins","rollupPluginNodeResolve","rollupPluginCommonJs","rollupPluginJson","rollupPluginAlias","entries","find","replacement","path","join","dirname","resolve","sync","basedir","rollupPluginTypescript","compilerOptions","rootDir","scriptsDir","declaration","declarationDir","module","target","tsconfig","removeComments","filterRoot","incremental","noEmitOnError","rollupPluginBabel","presets","babelPresetEs5","targets","ie","babelHelpers","extensions","sourceMaps","exclude","format","name","Scope","Package","dir","sourcemap","onLog","createLogger","level","log","_handler","entryModulePath","primaryChunk","otherOutputs","assets","filter","chunk","sourceMap","asset","fileName","endsWith","declarations","declarationFileMap","Map","map","replaceAll","source","entryModulePathWithDts","basename","extname","bundleTSDeclarations","js","referenceRegex","files","entryFileName","namespace","references","_fileName","content","indexOf","lines","split","os","EOL","index","length","line","match","includes","push","host","ts","createCompilerHost","fileExists","has","readFile","get","program","createProgram","options","rootNames","mainFile","getSourceFile","bundleFromEntryFile","getTypeChecker"],"mappings":"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"}
|
|
@@ -3,7 +3,7 @@ import * as fs from 'fs';
|
|
|
3
3
|
import * as path from 'path';
|
|
4
4
|
import ts from 'typescript';
|
|
5
5
|
import 'resolve';
|
|
6
|
-
import 'write-
|
|
6
|
+
import 'write-package';
|
|
7
7
|
import 'axios';
|
|
8
8
|
|
|
9
9
|
const getPackageTypescriptFiles = (location)=>glob.sync("**/*.ts", {
|
|
@@ -42,4 +42,4 @@ function isScriptPackageModules(options) {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export { resolveScriptPackageEntryModule as a, getPackageTypescriptFiles as g, isScriptPackageModules as i, readScriptPackageTSConfig as r };
|
|
45
|
-
//# sourceMappingURL=scripts-
|
|
45
|
+
//# sourceMappingURL=scripts-B3noxiX3.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scripts-
|
|
1
|
+
{"version":3,"file":"scripts-B3noxiX3.mjs","sources":["../../tools.core/build/scripts.mjs","../src/lib/scripts.ts"],"sourcesContent":["import * as glob from 'glob';\n\nconst getPackageTypescriptFiles = (location)=>glob.sync(\"**/*.ts\", {\n absolute: true,\n cwd: location.scriptsDir,\n ignore: \"node_modules/**/*\"\n });\n\nexport { getPackageTypescriptFiles };\n//# sourceMappingURL=scripts.mjs.map\n","import * as fs from \"fs\";\nimport * as path from \"path\";\nimport ts from \"typescript\";\n\nimport {\n\tCreatorPackage,\n\tPackageLocation,\n} from \"@intelligentgraphics/ig.gfx.tools.core\";\n\nexport { getPackageTypescriptFiles } from \"@intelligentgraphics/ig.gfx.tools.core\";\n\nexport function resolveScriptPackageEntryModule(\n\tlocation: PackageLocation,\n\tmanifest: CreatorPackage,\n) {\n\tlet candidates = [\"index.ts\"];\n\n\tif (manifest.Type === \"Context\") {\n\t\tcandidates.push(\"Context.ts\");\n\t}\n\n\tfor (const candidate of candidates) {\n\t\tconst candidatePath = path.join(location.scriptsDir, candidate);\n\n\t\tif (fs.existsSync(candidatePath)) {\n\t\t\treturn candidatePath;\n\t\t}\n\t}\n}\n\nexport function readScriptPackageTSConfig(location: PackageLocation) {\n\tconst { config } = ts.readConfigFile(\n\t\tpath.join(location.scriptsDir, \"tsconfig.json\"),\n\t\t(path) => {\n\t\t\ttry {\n\t\t\t\treturn fs.readFileSync(path, \"utf8\");\n\t\t\t} catch {\n\t\t\t\treturn undefined;\n\t\t\t}\n\t\t},\n\t);\n\n\tconst parsedTsConfig = ts.parseJsonConfigFileContent(\n\t\tconfig,\n\t\tts.sys,\n\t\tlocation.scriptsDir,\n\t);\n\n\treturn parsedTsConfig;\n}\n\nexport function isScriptPackageModules(options: ts.CompilerOptions) {\n\treturn options.module === ts.ModuleKind.ES2015;\n}\n"],"names":["getPackageTypescriptFiles","location","glob","sync","absolute","cwd","scriptsDir","ignore","resolveScriptPackageEntryModule","manifest","candidates","Type","push","candidate","candidatePath","path","join","fs","existsSync","readScriptPackageTSConfig","config","ts","readConfigFile","readFileSync","undefined","parsedTsConfig","parseJsonConfigFileContent","sys","isScriptPackageModules","options","module","ModuleKind","ES2015"],"mappings":";;;;;;;;MAIaA,yBAAAA,GAA4B,CAACC,QAAAA,GACzCC,IAAAA,CAAKC,IAAI,CAAC,SAAA,EAAW;AACpBC,QAAAA,QAAAA,EAAU,IAAA;QACVC,GAAAA,EAAKJ,SAASK,UAAU;AACxBC,QAAAA,MAAAA,EAAQ;AACT,KAAA;;ACEM,SAASC,+BAAAA,CACfP,QAAyB,EACzBQ,QAAwB,EAAA;AAExB,IAAA,IAAIC,UAAAA,GAAa;AAAC,QAAA;AAAW,KAAA;IAE7B,IAAID,QAAAA,CAASE,IAAI,KAAK,SAAA,EAAW;AAChCD,QAAAA,UAAAA,CAAWE,IAAI,CAAC,YAAA,CAAA;AACjB,IAAA;IAEA,KAAK,MAAMC,aAAaH,UAAAA,CAAY;AACnC,QAAA,MAAMI,gBAAgBC,IAAAA,CAAKC,IAAI,CAACf,QAAAA,CAASK,UAAU,EAAEO,SAAAA,CAAAA;QAErD,IAAII,EAAAA,CAAGC,UAAU,CAACJ,aAAAA,CAAAA,EAAgB;YACjC,OAAOA,aAAAA;AACR,QAAA;AACD,IAAA;AACD;AAEO,SAASK,0BAA0BlB,QAAyB,EAAA;AAClE,IAAA,MAAM,EAAEmB,MAAM,EAAE,GAAGC,GAAGC,cAAc,CACnCP,IAAAA,CAAKC,IAAI,CAACf,QAAAA,CAASK,UAAU,EAAE,kBAC/B,CAACS,IAAAA,GAAAA;QACA,IAAI;YACH,OAAOE,EAAAA,CAAGM,YAAY,CAACR,IAAAA,EAAM,MAAA,CAAA;AAC9B,QAAA,CAAA,CAAE,OAAM;YACP,OAAOS,SAAAA;AACR,QAAA;AACD,IAAA,CAAA,CAAA;IAGD,MAAMC,cAAAA,GAAiBJ,GAAGK,0BAA0B,CACnDN,QACAC,EAAAA,CAAGM,GAAG,EACN1B,QAAAA,CAASK,UAAU,CAAA;IAGpB,OAAOmB,cAAAA;AACR;AAEO,SAASG,uBAAuBC,OAA2B,EAAA;AACjE,IAAA,OAAOA,QAAQC,MAAM,KAAKT,EAAAA,CAAGU,UAAU,CAACC,MAAM;AAC/C;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import simpleGit from 'simple-git';
|
|
2
2
|
import * as path from 'path';
|
|
3
|
-
import { P as PackageVersion } from './index-
|
|
3
|
+
import { P as PackageVersion } from './index-DzhYnNye.mjs';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
5
|
import 'resolve';
|
|
6
|
-
import 'write-
|
|
7
|
-
import { i as isErrorENOENT } from './cli-
|
|
6
|
+
import 'write-package';
|
|
7
|
+
import { i as isErrorENOENT } from './cli-DIedP7qK.mjs';
|
|
8
8
|
import 'glob';
|
|
9
9
|
import 'axios';
|
|
10
10
|
|
|
@@ -203,4 +203,4 @@ const createYearString = (years)=>{
|
|
|
203
203
|
};
|
|
204
204
|
|
|
205
205
|
export { parseVersionFromString as a, getVersionInformationFromGit as b, getWorkspaceBannerText as c, getVersionFileHandler as g, parseVersionFromNumericVersion as p };
|
|
206
|
-
//# sourceMappingURL=versionFile-
|
|
206
|
+
//# sourceMappingURL=versionFile-DfWPXq6d.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versionFile-CK9FMt3L.mjs","sources":["../../tools.core/build/fs.mjs","../src/lib/git.ts","../src/lib/banner.ts","../src/lib/parseVersion.ts","../src/lib/versionFile.ts"],"sourcesContent":["import * as fs from 'fs';\nimport { isErrorENOENT } from './error.mjs';\n\nconst readStringFromFile = (filePath)=>fs.readFileSync(filePath, {\n encoding: \"utf8\"\n });\nconst readStringFromFileOrUndefined = (filePath)=>{\n try {\n return readStringFromFile(filePath);\n } catch (err) {\n if (!isErrorENOENT(err)) {\n throw err;\n }\n return undefined;\n }\n};\n\nexport { readStringFromFile, readStringFromFileOrUndefined };\n//# sourceMappingURL=fs.mjs.map\n","import simpleGit from \"simple-git\";\nimport * as path from \"path\";\n\nimport { WorkspaceLocation } from \"./workspace\";\nimport { PackageLocation } from \"./package\";\n\nexport const getVersionInformationFromGit = async (\n\tworkspaceLocation: WorkspaceLocation,\n\tpackageLocation: PackageLocation,\n) => {\n\ttry {\n\t\tconst git = simpleGit({\n\t\t\tbaseDir: workspaceLocation.path,\n\t\t});\n\n\t\t// check wether the files for a folder are changed\n\t\t// if so, mark as dirty\n\t\tconst diff = await git.diffSummary();\n\n\t\tconst dirty = diff.files.some((file) => {\n\t\t\tif (\n\t\t\t\tfile.file.toLowerCase().includes(\"releases\") ||\n\t\t\t\tfile.file.toLowerCase().endsWith(\"version.ts\") ||\n\t\t\t\tfile.file.toLowerCase().endsWith(\"package.json\")\n\t\t\t) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\tconst fullPath = path.resolve(workspaceLocation.path, file.file);\n\t\t\tconst relativePath = path.relative(packageLocation.path, fullPath);\n\n\t\t\treturn !relativePath.startsWith(\"..\");\n\t\t});\n\n\t\tconst log = await git.log({ maxCount: 1 });\n\t\tconst commit = !log.latest?.hash\n\t\t\t? undefined\n\t\t\t: log.latest.hash.substring(0, 7);\n\n\t\treturn {\n\t\t\tcommit,\n\t\t\tdirty,\n\t\t\tcommitDate: log.latest?.date,\n\t\t};\n\t} catch (err) {\n\t\treturn {};\n\t}\n};\n","import { WorkspacePackageJSON } from \"./workspace\";\n\nexport const getWorkspaceBannerText = (manifest: WorkspacePackageJSON) => {\n\tlet bannerText = manifest?.packager?.banner;\n\n\tif (bannerText) {\n\t\tconst match = bannerText.match(/Copyright \\(C\\) (\\d+)( ?- ?(\\d+))?/);\n\n\t\tif (match !== null) {\n\t\t\tconst startYear = parseInt(match[1]);\n\t\t\tconst endYear = new Date().getFullYear();\n\n\t\t\tif (startYear !== endYear) {\n\t\t\t\tbannerText = bannerText.replace(\n\t\t\t\t\tmatch[0],\n\t\t\t\t\t`Copyright (C) ${startYear} - ${endYear}`,\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tbannerText = bannerText.replace(\n\t\t\t\t\tmatch[0],\n\t\t\t\t\t`Copyright (C) ${startYear}`,\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn bannerText;\n};\n","import { PackageVersion } from \"./packageVersion\";\n\nexport const parseVersionFromString = (input: string) => {\n\tif (input === undefined) {\n\t\tthrow new Error(`Can not parse version from undefined`);\n\t}\n\n\tlet match: RegExpMatchArray | null;\n\n\tlet major!: string;\n\tlet minor!: string;\n\tlet patch!: string;\n\tlet build: string | undefined;\n\tlet preReleaseType: string | undefined;\n\tlet preReleaseNumber: string | undefined;\n\n\tif (\n\t\t// first try to find a full match with build number\n\t\t(match = input.match(\n\t\t\t/(\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+)(-([^\\.]+)\\.(\\d+))?/,\n\t\t)) !== null\n\t) {\n\t\t[, major, minor, patch, build, preReleaseType, preReleaseNumber] =\n\t\t\tmatch;\n\t} else if (\n\t\t(match = input.match(/(\\d+)\\.(\\d+)\\.(\\d+)(-([^\\.]+)\\.(\\d+))?/)) !== null\n\t) {\n\t\t[, major, minor, patch, , preReleaseType, preReleaseNumber] = match;\n\t}\n\n\tif (match === null) {\n\t\tthrow new Error(`Could not parse version from input: ${input}`);\n\t}\n\n\tlet preRelease: PackageVersion[\"preRelease\"] = undefined;\n\tlet buildNumber = 100;\n\n\tif (preReleaseType && preReleaseNumber) {\n\t\tpreRelease = {\n\t\t\ttype: preReleaseType,\n\t\t\tversion: parseInt(preReleaseNumber),\n\t\t};\n\t}\n\n\tif (build) {\n\t\tbuildNumber = Number(build);\n\t} else if (input) {\n\t\tconst descriptionMatch = input.match(/(\\d+)\\)$/);\n\n\t\tif (descriptionMatch) {\n\t\t\tbuildNumber = parseInt(descriptionMatch[1]);\n\t\t}\n\t}\n\n\treturn new PackageVersion(\n\t\tparseInt(major),\n\t\tparseInt(minor),\n\t\tparseInt(patch),\n\t\tpreRelease,\n\t\tbuildNumber,\n\t);\n};\n\n// 1000001001 -> 1.0.1.1\n// 1002017001 -> 1.2.17.1\nexport const parseVersionFromNumericVersion = (\n\tversion: number,\n): PackageVersion => {\n\tconst major = Math.floor(version / 1000000000);\n\tconst minor = Math.floor((version % 1000000000) / 1000000);\n\tconst patch = Math.floor((version % 1000000) / 1000);\n\tconst buildNumber = version % 1000;\n\n\treturn new PackageVersion(major, minor, patch, undefined, buildNumber);\n};\n","import * as fs from \"fs\";\nimport * as path from \"path\";\n\nimport { isErrorENOENT } from \"./error\";\nimport { readStringFromFileOrUndefined } from \"./fs\";\nimport { PackageLocation } from \"./package\";\nimport { PackageVersion } from \"./packageVersion\";\n\n// https://regex101.com/r/LtGAu5/1\nconst logRegex =\n\t/console\\.log\\(\\s*\"([\\w\\s\\.\\(\\)]+)\\ *Copyright[\\w\\s\\(\\)\\.]+(\\d{4}|\\d{4} - \\d{4})([\\w\\s\\(\\)\\.]+)?\",?\\s*\\)/i;\nconst currentYear = new Date(Date.now()).getFullYear();\n\nexport function getVersionFileHandler(location: PackageLocation) {\n\tconst filePath = path.join(location.scriptsDir, \"Version.ts\");\n\n\tfunction invalidVersionFile(\n\t\tversionFile: string | undefined,\n\t\texists: boolean,\n\t) {\n\t\treturn {\n\t\t\texists,\n\t\t\twrite: (name: string, newVersion: PackageVersion) => {\n\t\t\t\tconst scriptsContent = fs.readdirSync(location.scriptsDir);\n\t\t\t\tconst tsFiles = scriptsContent.filter((file) =>\n\t\t\t\t\tfile.endsWith(\".ts\"),\n\t\t\t\t);\n\n\t\t\t\tif (tsFiles.length > 0) {\n\t\t\t\t\treturn createVersionFileWriter([currentYear], \"\")(\n\t\t\t\t\t\tname,\n\t\t\t\t\t\tnewVersion,\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t},\n\t\t\treset: () => {\n\t\t\t\tif (versionFile !== undefined) {\n\t\t\t\t\tfs.writeFileSync(filePath, versionFile, {\n\t\t\t\t\t\tencoding: \"utf8\",\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tfs.rmSync(filePath);\n\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\tif (!isErrorENOENT(err)) {\n\t\t\t\t\t\t\tthrow err;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t};\n\t}\n\n\ttype CopyrightRange = [number, number?];\n\n\tfunction createVersionFileWriter(\n\t\tcopyright: CopyrightRange = [currentYear],\n\t\tcopyrightStuff: string = \"\",\n\t) {\n\t\treturn (name: string, newVersion: PackageVersion) => {\n\t\t\tconst descriptionText = newVersion.toDescriptionString(name);\n\t\t\tconst copyrightText = createYearString(copyright);\n\n\t\t\tconst result = `console.log(\"${descriptionText}. Copyright (C) ${copyrightText}${copyrightStuff}\");`;\n\n\t\t\tfs.writeFileSync(filePath, result, { encoding: \"utf-8\" });\n\t\t};\n\t}\n\n\tlet rawVersionFile = readStringFromFileOrUndefined(filePath);\n\n\tif (rawVersionFile === undefined) {\n\t\treturn invalidVersionFile(rawVersionFile, false);\n\t}\n\n\tconst versionFile = rawVersionFile.replace(/\\n/g, \"\");\n\n\tconst match = versionFile.match(logRegex);\n\n\tif (!match) {\n\t\treturn invalidVersionFile(versionFile, true);\n\t}\n\n\tconst [_full, _description, copyright, copyrightStuff] = match as [\n\t\tstring,\n\t\tstring,\n\t\tstring,\n\t\tstring?,\n\t];\n\n\tconst copyrightYears = copyright.match(/^(\\d+)( ?- ?(\\d+))?$/);\n\n\tlet years: [number, number?];\n\n\tif (copyrightYears === null) {\n\t\tyears = [currentYear];\n\t} else {\n\t\tyears = [Number(copyrightYears[1]), currentYear];\n\t}\n\n\treturn {\n\t\texists: true,\n\t\twrite: createVersionFileWriter(years, copyrightStuff),\n\t\treset: () => {\n\t\t\tfs.writeFileSync(filePath, versionFile, { encoding: \"utf8\" });\n\t\t},\n\t};\n}\n\nconst createYearString = (years: [number, number?]) => {\n\tif (years[1] === undefined || years[0] === years[1]) {\n\t\treturn years[0].toString();\n\t}\n\n\treturn `${years[0]} - ${years[1]}`;\n};\n"],"names":["readStringFromFile","filePath","fs","readFileSync","encoding","readStringFromFileOrUndefined","err","isErrorENOENT","undefined","getVersionInformationFromGit","workspaceLocation","packageLocation","git","simpleGit","baseDir","path","diff","diffSummary","dirty","files","some","file","toLowerCase","includes","endsWith","fullPath","resolve","relativePath","relative","startsWith","log","maxCount","commit","latest","hash","substring","commitDate","date","getWorkspaceBannerText","manifest","bannerText","packager","banner","match","startYear","parseInt","endYear","Date","getFullYear","replace","parseVersionFromString","input","Error","major","minor","patch","build","preReleaseType","preReleaseNumber","preRelease","buildNumber","type","version","Number","descriptionMatch","PackageVersion","parseVersionFromNumericVersion","Math","floor","logRegex","currentYear","now","getVersionFileHandler","location","join","scriptsDir","invalidVersionFile","versionFile","exists","write","name","newVersion","scriptsContent","readdirSync","tsFiles","filter","length","createVersionFileWriter","reset","writeFileSync","rmSync","copyright","copyrightStuff","descriptionText","toDescriptionString","copyrightText","createYearString","result","rawVersionFile","_full","_description","copyrightYears","years","toString"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"versionFile-DfWPXq6d.mjs","sources":["../../tools.core/build/fs.mjs","../src/lib/git.ts","../src/lib/banner.ts","../src/lib/parseVersion.ts","../src/lib/versionFile.ts"],"sourcesContent":["import * as fs from 'fs';\nimport { isErrorENOENT } from './error.mjs';\n\nconst readStringFromFile = (filePath)=>fs.readFileSync(filePath, {\n encoding: \"utf8\"\n });\nconst readStringFromFileOrUndefined = (filePath)=>{\n try {\n return readStringFromFile(filePath);\n } catch (err) {\n if (!isErrorENOENT(err)) {\n throw err;\n }\n return undefined;\n }\n};\n\nexport { readStringFromFile, readStringFromFileOrUndefined };\n//# sourceMappingURL=fs.mjs.map\n","import simpleGit from \"simple-git\";\nimport * as path from \"path\";\n\nimport { WorkspaceLocation } from \"./workspace\";\nimport { PackageLocation } from \"./package\";\n\nexport const getVersionInformationFromGit = async (\n\tworkspaceLocation: WorkspaceLocation,\n\tpackageLocation: PackageLocation,\n) => {\n\ttry {\n\t\tconst git = simpleGit({\n\t\t\tbaseDir: workspaceLocation.path,\n\t\t});\n\n\t\t// check wether the files for a folder are changed\n\t\t// if so, mark as dirty\n\t\tconst diff = await git.diffSummary();\n\n\t\tconst dirty = diff.files.some((file) => {\n\t\t\tif (\n\t\t\t\tfile.file.toLowerCase().includes(\"releases\") ||\n\t\t\t\tfile.file.toLowerCase().endsWith(\"version.ts\") ||\n\t\t\t\tfile.file.toLowerCase().endsWith(\"package.json\")\n\t\t\t) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\tconst fullPath = path.resolve(workspaceLocation.path, file.file);\n\t\t\tconst relativePath = path.relative(packageLocation.path, fullPath);\n\n\t\t\treturn !relativePath.startsWith(\"..\");\n\t\t});\n\n\t\tconst log = await git.log({ maxCount: 1 });\n\t\tconst commit = !log.latest?.hash\n\t\t\t? undefined\n\t\t\t: log.latest.hash.substring(0, 7);\n\n\t\treturn {\n\t\t\tcommit,\n\t\t\tdirty,\n\t\t\tcommitDate: log.latest?.date,\n\t\t};\n\t} catch (err) {\n\t\treturn {};\n\t}\n};\n","import { WorkspacePackageJSON } from \"./workspace\";\n\nexport const getWorkspaceBannerText = (manifest: WorkspacePackageJSON) => {\n\tlet bannerText = manifest?.packager?.banner;\n\n\tif (bannerText) {\n\t\tconst match = bannerText.match(/Copyright \\(C\\) (\\d+)( ?- ?(\\d+))?/);\n\n\t\tif (match !== null) {\n\t\t\tconst startYear = parseInt(match[1]);\n\t\t\tconst endYear = new Date().getFullYear();\n\n\t\t\tif (startYear !== endYear) {\n\t\t\t\tbannerText = bannerText.replace(\n\t\t\t\t\tmatch[0],\n\t\t\t\t\t`Copyright (C) ${startYear} - ${endYear}`,\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tbannerText = bannerText.replace(\n\t\t\t\t\tmatch[0],\n\t\t\t\t\t`Copyright (C) ${startYear}`,\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn bannerText;\n};\n","import { PackageVersion } from \"./packageVersion\";\n\nexport const parseVersionFromString = (input: string) => {\n\tif (input === undefined) {\n\t\tthrow new Error(`Can not parse version from undefined`);\n\t}\n\n\tlet match: RegExpMatchArray | null;\n\n\tlet major!: string;\n\tlet minor!: string;\n\tlet patch!: string;\n\tlet build: string | undefined;\n\tlet preReleaseType: string | undefined;\n\tlet preReleaseNumber: string | undefined;\n\n\tif (\n\t\t// first try to find a full match with build number\n\t\t(match = input.match(\n\t\t\t/(\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+)(-([^\\.]+)\\.(\\d+))?/,\n\t\t)) !== null\n\t) {\n\t\t[, major, minor, patch, build, preReleaseType, preReleaseNumber] =\n\t\t\tmatch;\n\t} else if (\n\t\t(match = input.match(/(\\d+)\\.(\\d+)\\.(\\d+)(-([^\\.]+)\\.(\\d+))?/)) !== null\n\t) {\n\t\t[, major, minor, patch, , preReleaseType, preReleaseNumber] = match;\n\t}\n\n\tif (match === null) {\n\t\tthrow new Error(`Could not parse version from input: ${input}`);\n\t}\n\n\tlet preRelease: PackageVersion[\"preRelease\"] = undefined;\n\tlet buildNumber = 100;\n\n\tif (preReleaseType && preReleaseNumber) {\n\t\tpreRelease = {\n\t\t\ttype: preReleaseType,\n\t\t\tversion: parseInt(preReleaseNumber),\n\t\t};\n\t}\n\n\tif (build) {\n\t\tbuildNumber = Number(build);\n\t} else if (input) {\n\t\tconst descriptionMatch = input.match(/(\\d+)\\)$/);\n\n\t\tif (descriptionMatch) {\n\t\t\tbuildNumber = parseInt(descriptionMatch[1]);\n\t\t}\n\t}\n\n\treturn new PackageVersion(\n\t\tparseInt(major),\n\t\tparseInt(minor),\n\t\tparseInt(patch),\n\t\tpreRelease,\n\t\tbuildNumber,\n\t);\n};\n\n// 1000001001 -> 1.0.1.1\n// 1002017001 -> 1.2.17.1\nexport const parseVersionFromNumericVersion = (\n\tversion: number,\n): PackageVersion => {\n\tconst major = Math.floor(version / 1000000000);\n\tconst minor = Math.floor((version % 1000000000) / 1000000);\n\tconst patch = Math.floor((version % 1000000) / 1000);\n\tconst buildNumber = version % 1000;\n\n\treturn new PackageVersion(major, minor, patch, undefined, buildNumber);\n};\n","import * as fs from \"fs\";\nimport * as path from \"path\";\n\nimport { isErrorENOENT } from \"./error\";\nimport { readStringFromFileOrUndefined } from \"./fs\";\nimport { PackageLocation } from \"./package\";\nimport { PackageVersion } from \"./packageVersion\";\n\n// https://regex101.com/r/LtGAu5/1\nconst logRegex =\n\t/console\\.log\\(\\s*\"([\\w\\s\\.\\(\\)]+)\\ *Copyright[\\w\\s\\(\\)\\.]+(\\d{4}|\\d{4} - \\d{4})([\\w\\s\\(\\)\\.]+)?\",?\\s*\\)/i;\nconst currentYear = new Date(Date.now()).getFullYear();\n\nexport function getVersionFileHandler(location: PackageLocation) {\n\tconst filePath = path.join(location.scriptsDir, \"Version.ts\");\n\n\tfunction invalidVersionFile(\n\t\tversionFile: string | undefined,\n\t\texists: boolean,\n\t) {\n\t\treturn {\n\t\t\texists,\n\t\t\twrite: (name: string, newVersion: PackageVersion) => {\n\t\t\t\tconst scriptsContent = fs.readdirSync(location.scriptsDir);\n\t\t\t\tconst tsFiles = scriptsContent.filter((file) =>\n\t\t\t\t\tfile.endsWith(\".ts\"),\n\t\t\t\t);\n\n\t\t\t\tif (tsFiles.length > 0) {\n\t\t\t\t\treturn createVersionFileWriter([currentYear], \"\")(\n\t\t\t\t\t\tname,\n\t\t\t\t\t\tnewVersion,\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t},\n\t\t\treset: () => {\n\t\t\t\tif (versionFile !== undefined) {\n\t\t\t\t\tfs.writeFileSync(filePath, versionFile, {\n\t\t\t\t\t\tencoding: \"utf8\",\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tfs.rmSync(filePath);\n\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\tif (!isErrorENOENT(err)) {\n\t\t\t\t\t\t\tthrow err;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t};\n\t}\n\n\ttype CopyrightRange = [number, number?];\n\n\tfunction createVersionFileWriter(\n\t\tcopyright: CopyrightRange = [currentYear],\n\t\tcopyrightStuff: string = \"\",\n\t) {\n\t\treturn (name: string, newVersion: PackageVersion) => {\n\t\t\tconst descriptionText = newVersion.toDescriptionString(name);\n\t\t\tconst copyrightText = createYearString(copyright);\n\n\t\t\tconst result = `console.log(\"${descriptionText}. Copyright (C) ${copyrightText}${copyrightStuff}\");`;\n\n\t\t\tfs.writeFileSync(filePath, result, { encoding: \"utf-8\" });\n\t\t};\n\t}\n\n\tlet rawVersionFile = readStringFromFileOrUndefined(filePath);\n\n\tif (rawVersionFile === undefined) {\n\t\treturn invalidVersionFile(rawVersionFile, false);\n\t}\n\n\tconst versionFile = rawVersionFile.replace(/\\n/g, \"\");\n\n\tconst match = versionFile.match(logRegex);\n\n\tif (!match) {\n\t\treturn invalidVersionFile(versionFile, true);\n\t}\n\n\tconst [_full, _description, copyright, copyrightStuff] = match as [\n\t\tstring,\n\t\tstring,\n\t\tstring,\n\t\tstring?,\n\t];\n\n\tconst copyrightYears = copyright.match(/^(\\d+)( ?- ?(\\d+))?$/);\n\n\tlet years: [number, number?];\n\n\tif (copyrightYears === null) {\n\t\tyears = [currentYear];\n\t} else {\n\t\tyears = [Number(copyrightYears[1]), currentYear];\n\t}\n\n\treturn {\n\t\texists: true,\n\t\twrite: createVersionFileWriter(years, copyrightStuff),\n\t\treset: () => {\n\t\t\tfs.writeFileSync(filePath, versionFile, { encoding: \"utf8\" });\n\t\t},\n\t};\n}\n\nconst createYearString = (years: [number, number?]) => {\n\tif (years[1] === undefined || years[0] === years[1]) {\n\t\treturn years[0].toString();\n\t}\n\n\treturn `${years[0]} - ${years[1]}`;\n};\n"],"names":["readStringFromFile","filePath","fs","readFileSync","encoding","readStringFromFileOrUndefined","err","isErrorENOENT","undefined","getVersionInformationFromGit","workspaceLocation","packageLocation","git","simpleGit","baseDir","path","diff","diffSummary","dirty","files","some","file","toLowerCase","includes","endsWith","fullPath","resolve","relativePath","relative","startsWith","log","maxCount","commit","latest","hash","substring","commitDate","date","getWorkspaceBannerText","manifest","bannerText","packager","banner","match","startYear","parseInt","endYear","Date","getFullYear","replace","parseVersionFromString","input","Error","major","minor","patch","build","preReleaseType","preReleaseNumber","preRelease","buildNumber","type","version","Number","descriptionMatch","PackageVersion","parseVersionFromNumericVersion","Math","floor","logRegex","currentYear","now","getVersionFileHandler","location","join","scriptsDir","invalidVersionFile","versionFile","exists","write","name","newVersion","scriptsContent","readdirSync","tsFiles","filter","length","createVersionFileWriter","reset","writeFileSync","rmSync","copyright","copyrightStuff","descriptionText","toDescriptionString","copyrightText","createYearString","result","rawVersionFile","_full","_description","copyrightYears","years","toString"],"mappings":"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"}
|
package/lib/lib.mjs
CHANGED
|
@@ -6,9 +6,8 @@ import ts from 'typescript';
|
|
|
6
6
|
import * as fs from 'fs';
|
|
7
7
|
import { createWriteStream, createReadStream } from 'fs';
|
|
8
8
|
import resolve from 'resolve';
|
|
9
|
-
import 'write-
|
|
9
|
+
import 'write-package';
|
|
10
10
|
import * as glob from 'glob';
|
|
11
|
-
import 'write-json-file';
|
|
12
11
|
import axios, { AxiosError } from 'axios';
|
|
13
12
|
import EventEmitter from 'events';
|
|
14
13
|
import { SourceMapGenerator, SourceMapConsumer } from 'source-map-js';
|
|
@@ -19,7 +18,7 @@ import { promisify } from 'util';
|
|
|
19
18
|
import simpleGit from 'simple-git';
|
|
20
19
|
import JSZip from 'jszip';
|
|
21
20
|
import { buffer } from 'node:stream/consumers';
|
|
22
|
-
import { resolveNamespaces, resolveNamespaceFullName } from '@intelligentgraphics/declarationbundler';
|
|
21
|
+
import { resolveNamespaces, findNamespaceByMemberSourceFile, resolveNamespaceFullName } from '@intelligentgraphics/declarationbundler';
|
|
23
22
|
|
|
24
23
|
const stripUtf8Bom = (text)=>{
|
|
25
24
|
// Catches EFBBBF (UTF-8 BOM) because the buffer-to-string
|
|
@@ -530,6 +529,7 @@ const createTSCWatchBuildParticipant = (location, outputDir, skipDeclarations)=>
|
|
|
530
529
|
}
|
|
531
530
|
state.diagnostics.push(diagnostic);
|
|
532
531
|
};
|
|
532
|
+
let currentProgram;
|
|
533
533
|
const reportWatchStatusChanged = (diagnostic)=>{
|
|
534
534
|
switch(diagnostic.code){
|
|
535
535
|
// regular watch mode - https://github.com/microsoft/TypeScript/blob/93e6b9da0c4cb164ca90a5a1b07415e81e97f2b1/src/compiler/diagnosticMessages.json#L4567
|
|
@@ -559,7 +559,7 @@ const createTSCWatchBuildParticipant = (location, outputDir, skipDeclarations)=>
|
|
|
559
559
|
});
|
|
560
560
|
return;
|
|
561
561
|
}
|
|
562
|
-
if (emitState.js === undefined
|
|
562
|
+
if (emitState.js === undefined) {
|
|
563
563
|
onBuildEnd({
|
|
564
564
|
type: "success",
|
|
565
565
|
artefacts: {
|
|
@@ -568,11 +568,14 @@ const createTSCWatchBuildParticipant = (location, outputDir, skipDeclarations)=>
|
|
|
568
568
|
});
|
|
569
569
|
return;
|
|
570
570
|
}
|
|
571
|
+
if (!currentProgram) {
|
|
572
|
+
throw new Error(`Expected a program to exist`);
|
|
573
|
+
}
|
|
571
574
|
onBuildEnd({
|
|
572
575
|
type: "success",
|
|
573
576
|
artefacts: {
|
|
574
577
|
js: emitState.js.replace(`//# sourceMappingURL=out.js.map`, ""),
|
|
575
|
-
declarations: getDeclarationFileReferences(location,
|
|
578
|
+
declarations: emitState.definitions ? getDeclarationFileReferences(location, currentProgram, outputDir) + emitState.definitions : undefined,
|
|
576
579
|
sourceMap: emitState.sourceMap
|
|
577
580
|
}
|
|
578
581
|
});
|
|
@@ -580,6 +583,11 @@ const createTSCWatchBuildParticipant = (location, outputDir, skipDeclarations)=>
|
|
|
580
583
|
}
|
|
581
584
|
};
|
|
582
585
|
const host = ts.createWatchCompilerHost(path.join(location.scriptsDir, "tsconfig.json"), getCompilerOptions(location, outputDir, skipDeclarations), customSys, ts.createSemanticDiagnosticsBuilderProgram, registerDiagnostic, reportWatchStatusChanged);
|
|
586
|
+
const originalAfterProgramCreate = host.afterProgramCreate;
|
|
587
|
+
host.afterProgramCreate = (program)=>{
|
|
588
|
+
currentProgram = program;
|
|
589
|
+
originalAfterProgramCreate == null ? void 0 : originalAfterProgramCreate(program);
|
|
590
|
+
};
|
|
583
591
|
const formattingHost = {
|
|
584
592
|
getCanonicalFileName: (path)=>path,
|
|
585
593
|
getCurrentDirectory: host.getCurrentDirectory,
|
|
@@ -660,7 +668,7 @@ const toposort = (packages)=>{
|
|
|
660
668
|
|
|
661
669
|
class BuildManager extends EventEmitter {
|
|
662
670
|
constructor(manifest, writer, reporter){
|
|
663
|
-
super(), this.manifest = manifest, this.writer = writer, this.reporter = reporter, this.participants = new Map(), this.states = new Map();
|
|
671
|
+
super(), this.manifest = manifest, this.writer = writer, this.reporter = reporter, this.participants = new Map(), this.states = new Map(), this.participantInstances = [];
|
|
664
672
|
}
|
|
665
673
|
addParticipant(name, participant) {
|
|
666
674
|
this.participants.set(name, participant);
|
|
@@ -673,7 +681,7 @@ class BuildManager extends EventEmitter {
|
|
|
673
681
|
}
|
|
674
682
|
this.emit("start");
|
|
675
683
|
for (const [name, participant] of this.participants){
|
|
676
|
-
participant({
|
|
684
|
+
const instance = participant({
|
|
677
685
|
onBuildStart: ()=>{
|
|
678
686
|
let alreadyBusy = false;
|
|
679
687
|
for (const [name, state] of this.states){
|
|
@@ -695,6 +703,12 @@ class BuildManager extends EventEmitter {
|
|
|
695
703
|
},
|
|
696
704
|
log: (message)=>this.reporter.log(message)
|
|
697
705
|
});
|
|
706
|
+
this.participantInstances.push(instance);
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
destroy() {
|
|
710
|
+
for (const instance of this.participantInstances){
|
|
711
|
+
instance.destroy();
|
|
698
712
|
}
|
|
699
713
|
}
|
|
700
714
|
maybeEmit() {
|
|
@@ -1429,10 +1443,12 @@ async function buildFolders(options) {
|
|
|
1429
1443
|
}
|
|
1430
1444
|
if (typescriptFiles.length > 0) {
|
|
1431
1445
|
if (isScriptPackageModules(tsConfig.options)) {
|
|
1432
|
-
const { createRollupBuildParticipant } = await import('./rollup-
|
|
1433
|
-
manager.addParticipant("rollup", createRollupBuildParticipant(location, data, outputDirectory, options.
|
|
1446
|
+
const { createRollupBuildParticipant } = await import('./rollup-CTNi9TK_.mjs');
|
|
1447
|
+
manager.addParticipant("rollup", createRollupBuildParticipant(location, data, outputDirectory, !tsConfig.options.declaration));
|
|
1434
1448
|
} else {
|
|
1435
|
-
manager.addParticipant("tsc", createTSCBuildParticipant(location, outputDirectory,
|
|
1449
|
+
manager.addParticipant("tsc", createTSCBuildParticipant(location, outputDirectory, // in the past we always created declaration files,
|
|
1450
|
+
// so we'll use it as the default for legacy modules
|
|
1451
|
+
tsConfig.options.declaration === false));
|
|
1436
1452
|
}
|
|
1437
1453
|
}
|
|
1438
1454
|
manager.addParticipant("animation", createAnimationBuildParticipant(location, data));
|
|
@@ -1467,6 +1483,7 @@ async function buildFoldersWatch(options) {
|
|
|
1467
1483
|
}
|
|
1468
1484
|
const workspace = options.workspace;
|
|
1469
1485
|
const folders = options.packages;
|
|
1486
|
+
options.reporter ?? consoleReporter;
|
|
1470
1487
|
let sortedPackages = sortPackagesByBuildOrder(folders);
|
|
1471
1488
|
let index = 1;
|
|
1472
1489
|
const manifests = new Map(sortedPackages.map((location)=>[
|
|
@@ -1474,11 +1491,12 @@ async function buildFoldersWatch(options) {
|
|
|
1474
1491
|
readPackageCreatorManifest(location)
|
|
1475
1492
|
]));
|
|
1476
1493
|
const maxNameLength = Array.from(manifests.values(), (manifest)=>manifest.Package.length).reduce((acc, length)=>Math.max(acc, length), 0);
|
|
1494
|
+
const managers = [];
|
|
1477
1495
|
for (const location of sortedPackages){
|
|
1478
1496
|
const tsConfig = await ensureTsConfig(location);
|
|
1479
1497
|
const baseReporter = options.reporter ?? consoleReporter;
|
|
1480
1498
|
const data = manifests.get(location);
|
|
1481
|
-
const reporter = createPackageScopedReporter(baseReporter, data.Package, index, folders.length, maxNameLength);
|
|
1499
|
+
const reporter = options.preparedReporter ?? createPackageScopedReporter(baseReporter, data.Package, index, folders.length, maxNameLength);
|
|
1482
1500
|
const outputDirectory = options.outDir || location.scriptsDir;
|
|
1483
1501
|
await fs$1.mkdir(outputDirectory, {
|
|
1484
1502
|
recursive: true
|
|
@@ -1493,10 +1511,12 @@ async function buildFoldersWatch(options) {
|
|
|
1493
1511
|
}
|
|
1494
1512
|
if (typescriptFiles.length > 0) {
|
|
1495
1513
|
if (isScriptPackageModules(tsConfig.options)) {
|
|
1496
|
-
const { createRollupWatchBuildParticipant } = await import('./rollup-
|
|
1497
|
-
manager.addParticipant("rollup", createRollupWatchBuildParticipant(location, data, outputDirectory, options.
|
|
1514
|
+
const { createRollupWatchBuildParticipant } = await import('./rollup-CTNi9TK_.mjs');
|
|
1515
|
+
manager.addParticipant("rollup", createRollupWatchBuildParticipant(location, data, outputDirectory, !tsConfig.options.declaration));
|
|
1498
1516
|
} else {
|
|
1499
|
-
manager.addParticipant("tsc", createTSCWatchBuildParticipant(location, outputDirectory,
|
|
1517
|
+
manager.addParticipant("tsc", createTSCWatchBuildParticipant(location, outputDirectory, // in the past we always created declaration files,
|
|
1518
|
+
// so we'll use it as the default for legacy modules
|
|
1519
|
+
tsConfig.options.declaration === false));
|
|
1500
1520
|
}
|
|
1501
1521
|
}
|
|
1502
1522
|
manager.addParticipant("animation", createAnimationWatchBuildParticipant(location, data));
|
|
@@ -1514,9 +1534,16 @@ async function buildFoldersWatch(options) {
|
|
|
1514
1534
|
});
|
|
1515
1535
|
manager.run();
|
|
1516
1536
|
});
|
|
1537
|
+
managers.push(manager);
|
|
1517
1538
|
index++;
|
|
1518
1539
|
}
|
|
1519
|
-
|
|
1540
|
+
return {
|
|
1541
|
+
destroy: ()=>{
|
|
1542
|
+
for (const manager of managers){
|
|
1543
|
+
manager.destroy();
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
};
|
|
1520
1547
|
}
|
|
1521
1548
|
async function writeBuildResult(buildResult, manifest, location, workspace, outputDirectory, minimize, reporter) {
|
|
1522
1549
|
let js = buildResult.js;
|
|
@@ -1633,7 +1660,7 @@ function applyTsConfigOptions(data) {
|
|
|
1633
1660
|
data.compilerOptions = data.compilerOptions ?? {};
|
|
1634
1661
|
data.compilerOptions.target = "esnext";
|
|
1635
1662
|
data.compilerOptions.lib = [
|
|
1636
|
-
"
|
|
1663
|
+
"es2024",
|
|
1637
1664
|
"dom"
|
|
1638
1665
|
];
|
|
1639
1666
|
data.compilerOptions.module = "es2015";
|
|
@@ -2356,15 +2383,18 @@ const releaseFolder = async (options)=>{
|
|
|
2356
2383
|
* Extracts and returns script array for _Index.json from a src folder
|
|
2357
2384
|
*
|
|
2358
2385
|
* @param folderPath path to a src folder
|
|
2359
|
-
*/ function generateIndex({ location, ignore = [], strictOptional
|
|
2386
|
+
*/ function generateIndex({ location, ignore = [], strictOptional }) {
|
|
2360
2387
|
const arr = [];
|
|
2361
2388
|
const existingIndex = readPackageCreatorIndex(location) ?? [];
|
|
2362
2389
|
const manifest = readPackageCreatorManifest(location);
|
|
2363
2390
|
const compilerOptions = readScriptPackageTSConfig(location).options;
|
|
2364
2391
|
const isModule = compilerOptions.module === ts.ModuleKind.ES2015 || compilerOptions.module === ts.ModuleKind.ESNext;
|
|
2392
|
+
if (strictOptional === undefined) {
|
|
2393
|
+
strictOptional = compilerOptions.strict === true || compilerOptions.strictNullChecks === true;
|
|
2394
|
+
}
|
|
2365
2395
|
const files = getPackageTypescriptFiles(location).filter((path)=>!ignore.some((suffix)=>path.endsWith(suffix)));
|
|
2366
2396
|
let program;
|
|
2367
|
-
let
|
|
2397
|
+
let rootNamespace;
|
|
2368
2398
|
if (isModule) {
|
|
2369
2399
|
const entryFilePath = resolveScriptPackageEntryModule(location, manifest);
|
|
2370
2400
|
if (entryFilePath === undefined) {
|
|
@@ -2381,19 +2411,21 @@ const releaseFolder = async (options)=>{
|
|
|
2381
2411
|
if (entryFile === undefined) {
|
|
2382
2412
|
throw new Error(`Failed to find entry module`);
|
|
2383
2413
|
}
|
|
2384
|
-
|
|
2414
|
+
rootNamespace = resolveNamespaces(entryFile, program, host, program.getTypeChecker(), manifest.Scope ?? manifest.Package);
|
|
2385
2415
|
} else {
|
|
2386
2416
|
program = ts.createProgram(files, {
|
|
2387
2417
|
allowJs: true
|
|
2388
2418
|
});
|
|
2389
|
-
namespaces = [];
|
|
2390
2419
|
}
|
|
2391
2420
|
const typeChecker = program.getTypeChecker();
|
|
2392
2421
|
files.forEach((file)=>{
|
|
2393
2422
|
// Create a Program to represent the project, then pull out the
|
|
2394
2423
|
// source file to parse its AST.
|
|
2395
2424
|
const sourceFile = program.getSourceFile(file);
|
|
2396
|
-
|
|
2425
|
+
if (sourceFile === undefined) {
|
|
2426
|
+
return;
|
|
2427
|
+
}
|
|
2428
|
+
const namespace = rootNamespace === undefined ? undefined : findNamespaceByMemberSourceFile(rootNamespace, sourceFile);
|
|
2397
2429
|
// Loop through the root AST nodes of the file
|
|
2398
2430
|
for (const scriptingClass of findScriptingClasses(sourceFile)){
|
|
2399
2431
|
if (scriptingClass.node.name === undefined) {
|
|
@@ -2406,9 +2438,6 @@ const releaseFolder = async (options)=>{
|
|
|
2406
2438
|
} else {
|
|
2407
2439
|
name = typeChecker.getFullyQualifiedName(typeChecker.getSymbolAtLocation(scriptingClass.node.name));
|
|
2408
2440
|
}
|
|
2409
|
-
if (name.length > 45) {
|
|
2410
|
-
throw new Error(`Package name length >45 '${name}'`);
|
|
2411
|
-
}
|
|
2412
2441
|
const parameterDeclaration = getScriptingClassParameterdeclaration(scriptingClass);
|
|
2413
2442
|
const parametersType = parameterDeclaration === undefined ? undefined : typeChecker.getTypeAtLocation(parameterDeclaration);
|
|
2414
2443
|
if (parametersType === undefined) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intelligentgraphics/ig.gfx.packager",
|
|
3
|
-
"version": "3.1.0
|
|
4
|
-
"description": "IG.GFX.Packager 3.1.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
|
+
"description": "IG.GFX.Packager 3.1.0 (3.1.0.100)",
|
|
5
5
|
"author": "Michael Beier <mb@intelligentgraphics.biz>",
|
|
6
6
|
"main": "lib/lib.mjs",
|
|
7
7
|
"types": "lib/lib.d.ts",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@intelligentgraphics/declarationbundler": "^0.4.4",
|
|
34
|
+
"@intelligentgraphics/ig.gfx.packager-babel-preset-es5": "^3.1.0",
|
|
34
35
|
"@rollup/plugin-alias": "^6.0.0",
|
|
35
36
|
"@rollup/plugin-babel": "^6.1.0",
|
|
36
37
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
@@ -53,12 +54,10 @@
|
|
|
53
54
|
"typedoc": "^0.28.14",
|
|
54
55
|
"typescript": "~5.9.3",
|
|
55
56
|
"update-notifier": "^7.3.1",
|
|
56
|
-
"
|
|
57
|
-
"write-pkg": "^7.0.0",
|
|
57
|
+
"write-package": "^7.0.0",
|
|
58
58
|
"yargs": "^18.0.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@intelligentgraphics/ig.gfx.packager-babel-preset-es5": "^3.1.0-alpha.7",
|
|
62
61
|
"@intelligentgraphics/ig.gfx.tools.core": "^1.0.0",
|
|
63
62
|
"@rollup/plugin-swc": "^0.4.0",
|
|
64
63
|
"@swc/core": "^1.4.6",
|