Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
915 B
45 lines
915 B
2 years ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.CJSOutputFormat = void 0;
|
||
|
|
||
|
class CJSOutputFormat {
|
||
|
constructor(packager) {
|
||
|
this.packager = packager;
|
||
|
}
|
||
|
|
||
|
buildBundlePrelude() {
|
||
|
let res = '';
|
||
|
let lines = 0;
|
||
|
|
||
|
for (let [source, specifiers] of this.packager.externals) {
|
||
|
// CJS only supports the namespace symbol. This ensures that all accesses
|
||
|
// are live and the `this` binding is correct.
|
||
|
let namespace = specifiers.get('*');
|
||
|
|
||
|
if (namespace) {
|
||
|
res += `var ${namespace} = require(${JSON.stringify(source)});\n`;
|
||
|
lines++;
|
||
|
} else {
|
||
|
res += `require(${JSON.stringify(source)});\n`;
|
||
|
lines++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (res.length > 0) {
|
||
|
res += '\n';
|
||
|
lines++;
|
||
|
}
|
||
|
|
||
|
return [res, lines];
|
||
|
}
|
||
|
|
||
|
buildBundlePostlude() {
|
||
|
return ['', 0];
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
exports.CJSOutputFormat = CJSOutputFormat;
|