Version 1.0.2 mit node_modules Verzeichnis

This commit is contained in:
ISA
2024-10-02 07:58:24 +02:00
parent f353a06b1b
commit 62b6e55a0a
68228 changed files with 4548477 additions and 651 deletions

View File

@@ -0,0 +1,12 @@
/**
* Formats the manifest depending on the environment variable
* `NODE_ENV`. If it's set to `development`, it will return a pretty printed
* JSON string, otherwise it will return a minified JSON string.
*/ export function formatManifest(manifest) {
if (process.env.NODE_ENV === "development") {
return JSON.stringify(manifest, null, 2);
}
return JSON.stringify(manifest);
}
//# sourceMappingURL=format-manifest.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../../src/build/manifests/formatter/format-manifest.ts"],"names":["formatManifest","manifest","process","env","NODE_ENV","JSON","stringify"],"mappings":"AAAA;;;;CAIC,GACD,OAAO,SAASA,eAAiCC,QAAW;IAC1D,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,eAAe;QAC1C,OAAOC,KAAKC,SAAS,CAACL,UAAU,MAAM;IACxC;IAEA,OAAOI,KAAKC,SAAS,CAACL;AACxB"}