vbapm 0.6.12 → 0.6.15

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.
Files changed (63) hide show
  1. package/README.md +26 -0
  2. package/addins/build/vbapm.xlam +0 -0
  3. package/lib/_commonjsHelpers-Bjf42z7h.js +1 -0
  4. package/lib/build-project-BczswKQl.js +3 -0
  5. package/lib/build-target-D6L5nsgt.js +9 -0
  6. package/lib/crc32-Cc3OMFYk.js +1 -0
  7. package/lib/create-project-CPIRr0DV.js +10 -0
  8. package/lib/debug.js +1 -1
  9. package/lib/export-project-DQ3bfvbV.js +4 -0
  10. package/lib/export-target-CN6RA_mA.js +4 -0
  11. package/lib/{get-target-cf4af796.js → get-target-CH6IpAa1.js} +1 -1
  12. package/lib/index-BlteXxjY.js +1 -0
  13. package/lib/index-CEojr58e.js +2 -0
  14. package/lib/index-D-khpcjL.js +54 -0
  15. package/lib/index-DSgWshzu.js +2 -0
  16. package/lib/index-DXFu_Z-o.js +6 -0
  17. package/lib/index-Dg07BXJE.js +14 -0
  18. package/lib/index.js +1 -1
  19. package/lib/init-project-dRuDA4YO.js +15 -0
  20. package/lib/installer-CJlDenLg.js +9 -0
  21. package/lib/{load-from-project-6be3cab9.js → load-from-project-Bpb6Ne_i.js} +1 -1
  22. package/lib/once-fkpTAKD3.js +1 -0
  23. package/lib/project-C3bWzV0O.js +29 -0
  24. package/lib/run-macro-D_9-BO3U.js +1 -0
  25. package/lib/sat-solver-5AniWyxz.js +1 -0
  26. package/lib/string_decoder-CW-j4E6X.js +1 -0
  27. package/lib/test-project-BTkTNZXs.js +1 -0
  28. package/lib/tmp-C7yJT4iq.js +8 -0
  29. package/lib/toml-patch.es-CxrbsPnB.js +3 -0
  30. package/lib/transform-target-Doak2S1q.js +2 -0
  31. package/lib/vbapm-build-B1OOy6VL.js +9 -0
  32. package/lib/vbapm-export-vvUDCDqi.js +7 -0
  33. package/lib/{vbapm-init-131ea380.js → vbapm-init-csKsZ87H.js} +2 -2
  34. package/lib/vbapm-new-Dt0tX1xQ.js +17 -0
  35. package/lib/{vbapm-run-795f5167.js → vbapm-run-Ccciwg2y.js} +1 -1
  36. package/lib/{vbapm-test-dc8aad3b.js → vbapm-test-u7AWC-AV.js} +1 -1
  37. package/lib/vbapm-version-Bsb-cWCD.js +8 -0
  38. package/lib/vbapm.js +10 -10
  39. package/package.json +12 -12
  40. package/lib/_commonjsHelpers-553b27b3.js +0 -1
  41. package/lib/build-project-59d26ffa.js +0 -3
  42. package/lib/build-target-d6327f6f.js +0 -9
  43. package/lib/create-project-0813adf7.js +0 -10
  44. package/lib/export-project-59836888.js +0 -4
  45. package/lib/export-target-902b2548.js +0 -4
  46. package/lib/index-4386ff9f.js +0 -5
  47. package/lib/index-4ce3d28b.js +0 -6
  48. package/lib/index-72c1a91d.js +0 -3
  49. package/lib/index-c5b5f6d1.js +0 -2
  50. package/lib/init-project-74a9b860.js +0 -15
  51. package/lib/installer-2f42d28c.js +0 -21
  52. package/lib/once-5205b917.js +0 -1
  53. package/lib/project-d784a14d.js +0 -29
  54. package/lib/run-macro-c5a7bb2d.js +0 -1
  55. package/lib/sat-solver-01db5ebc.js +0 -1
  56. package/lib/test-project-b0a5536b.js +0 -1
  57. package/lib/tmp-14f9d850.js +0 -9
  58. package/lib/toml-patch.es-6bd2145d.js +0 -3
  59. package/lib/vbapm-build-8e2c88c7.js +0 -9
  60. package/lib/vbapm-export-af350c94.js +0 -7
  61. package/lib/vbapm-new-e3409051.js +0 -17
  62. package/lib/vbapm-version-3b5a838c.js +0 -8
  63. package/lib/workbook-xml-5b96eac5.js +0 -2
package/README.md CHANGED
@@ -184,19 +184,26 @@ Howdy Tim!
184
184
 
185
185
  ## Manifest (vbaproject.toml)
186
186
 
187
+ The vbapm manifest (vbaproject.toml) serves as the foundation for your project and provides information on your package, source, dependencies, references, and targets, as detailed below.
188
+
187
189
  ### [project] or [package]
188
190
 
191
+ The `[package]` / `[project]` section includes general information about your package. You should choose `[package]` if your project is only intended to be used as a utility inside another project and `[project]` if your project is a standalone tool.
192
+
193
+ Here are the main properties:
189
194
  - `name` (_required_)
190
195
  - `version` (_required_ for `[package]`)
191
196
  - `authors` (_required_ for `[package]`)
192
197
  - `target` (_required_ for `[project]`)
193
198
 
199
+ **Example 1**
194
200
  ```toml
195
201
  [project]
196
202
  name = "awesome-excel-project"
197
203
  target = "xlsm"
198
204
  ```
199
205
 
206
+ **Example 2**
200
207
  ```toml
201
208
  [package]
202
209
  name = "awesome-vba-package"
@@ -204,8 +211,27 @@ authors = ["Me <me@email.com>"]
204
211
  version = "0.1.0"
205
212
  ```
206
213
 
214
+ #### [version]
215
+ vbapm follows [Semantic Versioning](https://semver.org/). Make sure you adopt a compatible versioning approach if you intend to publish to the repository.
216
+
217
+ #### [target]
218
+ `target` is used to define what application/extension to use when building your project. It can be a string for the extension, in which case `target/` includes the source files for creating the target. Otherwise, `type` and `path` can be used to define a custom target path.
219
+
220
+ Example 1:
221
+ ```toml
222
+ target = "xlsm"
223
+ # equivalent to target = { type = "xlsm", path = "target" }
224
+ ```
225
+
226
+ Example 2:
227
+ ```toml
228
+ target = { type = "xlam", path = "targets/xlam" }
229
+ ```
230
+
207
231
  ### [src]
208
232
 
233
+ Will contain the list of source code files to be included in the VBA-Enabled Document at build time.
234
+
209
235
  `name = "path"` or
210
236
 
211
237
  - `path`
Binary file
@@ -0,0 +1 @@
1
+ "use strict";var e="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};exports.commonjsGlobal=e,exports.getAugmentedNamespace=function(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if("function"==typeof t){var o=function e(){var o=!1;try{o=this instanceof e}catch{}return o?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};o.prototype=t.prototype}else o={};return Object.defineProperty(o,"__esModule",{value:!0}),Object.keys(e).forEach(function(t){var r=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(o,t,r.get?r:{enumerable:!0,get:function(){return e[t]}})}),o},exports.getDefaultExportFromCjs=function(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e};
@@ -0,0 +1,3 @@
1
+ "use strict";var e=require("./installer-CJlDenLg.js"),r=require("./project-C3bWzV0O.js"),t=require("./build-target-D6L5nsgt.js");require("assert"),require("./transform-target-Doak2S1q.js"),require("fs");var i=require("./get-target-CH6IpAa1.js");exports.buildProject=async function(n={}){e.env.reporter.log(e.Message.BuildProjectLoading,"[1/3] Loading project...");const a=await r.loadProject(),{target:s,blankTarget:o}=i.getTarget(a,n.target),g=await r.fetchDependencies(a),c=a.packages.map(e=>{const t=r.toDependency(e);return r.isRegistryDependency(t)?`${e.id} registry+${t.registry}`:`${e.id} ${e.source}`});e.env.reporter.log(e.Message.BuildTargetBuilding,e.dedent`
2
+ \n[2/3] Building target "${s.type}" for "${a.manifest.name}"...
3
+ ${c.length?`\nDependencies:\n${c.join("\n")}`:""}`),await t.buildTarget(s,{project:a,dependencies:g,blankTarget:o},n);const d=!a.hasDirtyLockfile;return e.env.reporter.log(e.Message.BuildLockfileWriting,"\n[3/3] Writing lockfile..."+(d?" (skipped, no changes)":"")),d||await r.writeLockfile(a.paths.root,a),e.join(a.paths.dir,"build",s.filename)};
@@ -0,0 +1,9 @@
1
+ "use strict";var t=require("./installer-CJlDenLg.js"),a=require("./transform-target-Doak2S1q.js");require("assert");var r=require("./load-from-project-Bpb6Ne_i.js"),e=require("path"),i=require("./project-C3bWzV0O.js");const o=t=>/1004/.test(t),n=(a,r)=>t.dedent`
2
+ Failed to build target "${a.name}", it is currently open.
3
+
4
+ Please close "${r}" and try again.
5
+ `;async function s(a,r){if(!await t.pathExistsExports.pathExists(r.path))throw new t.CliError(t.ErrorCode.TargetNotFound,`Target "${r.name}" not found at "${r.path}".`);const e=t.join(a.paths.staging,r.filename);try{await t.mkdirsExports.ensureDir(a.paths.staging),await i.zip(r.path,e)}catch(a){throw new t.CliError(t.ErrorCode.TargetCreateFailed,`Failed to create project for target "${r.name}".`,a)}return e}exports.buildTarget=async function(i,p,c={}){const{project:l}=p;let m;try{m=p.blankTarget?await a.createDocument(l,i,{staging:!0}):await s(l,i)}catch(a){if(!t.isRunError(a)||!a.result.errors.some(o))throw a;const r=t.join(l.paths.build,i.filename);throw new t.CliError(t.ErrorCode.TargetIsOpen,n(i,r))}await async function(i,o,n,s={}){const{project:p,dependencies:c}=o,l=t.join(p.paths.staging,"import");await t.mkdirsExports.ensureDir(l),await t.emptyExports.emptyDir(l);const m=await r.loadFromProject(p,c,s),w=await async function(a,r){const i=await t.parallel(a.components,async a=>{const i=t.join(r,a.filename);if(await t.writeFile(i,a.code),a.binaryPath){const i=t.join(r,e.basename(a.binaryPath));if(!a.details.binary)throw new Error(`Binary data missing for component "${a.name}"`);await t.writeFile(i,a.details.binary)}return{name:a.name,path:i}});return{name:a.name,components:i,references:a.references}}(m,l);try{await a.importGraph(p,i,w,n,s)}catch(a){throw new t.CliError(t.ErrorCode.TargetImportFailed,`Failed to import project for target "${i.name}".`,a)}finally{await t.removeExports.remove(l)}}(i,p,m,c);try{await async function(a,r){const e=t.join(a.paths.backup,r.filename),i=t.join(a.paths.build,r.filename);await t.pathExistsExports.pathExists(e)&&await t.removeExports.remove(e);if(await t.pathExistsExports.pathExists(i)){await t.mkdirsExports.ensureDir(a.paths.backup);try{await t.moveExports.move(i,e)}catch(a){throw new t.CliError(t.ErrorCode.TargetIsOpen,n(r,i))}}}(l,i);const a=t.join(l.paths.build,i.filename);await t.moveExports.move(m,a)}catch(a){throw await async function(a,r){const e=t.join(a.paths.backup,r.filename),i=t.join(a.paths.build,r.filename);if(!await t.pathExistsExports.pathExists(e))return;try{await t.copyExports.copy(e,i)}catch(a){throw new t.CliError(t.ErrorCode.TargetRestoreFailed,t.dedent`
6
+ Failed to automatically restore backup from "${e}" to "${i}".
7
+
8
+ The previous version can be moved back manually, if desired.
9
+ `,a)}}(l,i),a}finally{await t.removeExports.remove(m)}};
@@ -0,0 +1 @@
1
+ "use strict";var r,n={};exports.requireCrc32=function(){return r||(r=1,t=function(r){r.version="1.2.0";var n=function(){for(var r=0,n=new Array(256),t=0;256!=t;++t)r=1&(r=1&(r=1&(r=1&(r=1&(r=1&(r=1&(r=1&(r=t)?-306674912^r>>>1:r>>>1)?-306674912^r>>>1:r>>>1)?-306674912^r>>>1:r>>>1)?-306674912^r>>>1:r>>>1)?-306674912^r>>>1:r>>>1)?-306674912^r>>>1:r>>>1)?-306674912^r>>>1:r>>>1)?-306674912^r>>>1:r>>>1,n[t]=r;return"undefined"!=typeof Int32Array?new Int32Array(n):n}();r.table=n,r.bstr=function(r,t){for(var e=-1^t,o=r.length-1,f=0;f<o;)e=(e=e>>>8^n[255&(e^r.charCodeAt(f++))])>>>8^n[255&(e^r.charCodeAt(f++))];return f===o&&(e=e>>>8^n[255&(e^r.charCodeAt(f))]),-1^e},r.buf=function(r,t){if(r.length>1e4)return function(r,t){for(var e=-1^t,o=r.length-7,f=0;f<o;)e=(e=(e=(e=(e=(e=(e=(e=e>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])];for(;f<o+7;)e=e>>>8^n[255&(e^r[f++])];return-1^e}(r,t);for(var e=-1^t,o=r.length-3,f=0;f<o;)e=(e=(e=(e=e>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])])>>>8^n[255&(e^r[f++])];for(;f<o+3;)e=e>>>8^n[255&(e^r[f++])];return-1^e},r.str=function(r,t){for(var e,o,f=-1^t,u=0,a=r.length;u<a;)(e=r.charCodeAt(u++))<128?f=f>>>8^n[255&(f^e)]:e<2048?f=(f=f>>>8^n[255&(f^(192|e>>6&31))])>>>8^n[255&(f^(128|63&e))]:e>=55296&&e<57344?(e=64+(1023&e),o=1023&r.charCodeAt(u++),f=(f=(f=(f=f>>>8^n[255&(f^(240|e>>8&7))])>>>8^n[255&(f^(128|e>>2&63))])>>>8^n[255&(f^(128|o>>6&15|(3&e)<<4))])>>>8^n[255&(f^(128|63&o))]):f=(f=(f=f>>>8^n[255&(f^(224|e>>12&15))])>>>8^n[255&(f^(128|e>>6&63))])>>>8^n[255&(f^(128|63&e))];return-1^f}},"undefined"==typeof DO_NOT_EXPORT_CRC?t(n):t({})),n;var t};
@@ -0,0 +1,10 @@
1
+ "use strict";var r=require("./installer-CJlDenLg.js"),e=require("./init-project-dRuDA4YO.js");exports.createProject=async function(t){if(!t||!t.name)throw new r.CliError(r.ErrorCode.NewNameRequired,r.dedent`
2
+ "name" is required with vbapm new (e.g. vbapm new project-name).
3
+
4
+ Try "vbapm help new" for more information.
5
+ `);let{name:i,target:o,from:a,pkg:n,git:s}=t;if(!o&&!a&&i.includes(".")){const r=i.split(".");o=r.pop(),i=r.join(".")}if(!n&&!o&&!a)throw new r.CliError(r.ErrorCode.NewTargetRequired,r.dedent`
6
+ .TYPE, --target, or --from is required for vbapm projects.
7
+ (e.g. vbapm new project.name.TYPE)
8
+
9
+ Try "vbapm help new" for more information.
10
+ `);const p=r.join(r.env.cwd,i);if(await r.pathExistsExports.pathExists(p))throw new r.CliError(r.ErrorCode.NewDirExists,`A directory for "${i}" already exists: "${p}". `);await r.mkdirsExports.ensureDir(p),await e.initProject({name:i,dir:p,target:o,from:a,pkg:n,git:s})};
package/lib/debug.js CHANGED
@@ -1 +1 @@
1
- "use strict";var e=require("./_commonjsHelpers-553b27b3.js"),t=require("tty"),s=require("util"),r=require("os");function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var o=n(t),c=n(s),i=n(r),a={},u=(e,t)=>{t=t||process.argv;const s=e.startsWith("-")?"":1===e.length?"-":"--",r=t.indexOf(s+e),n=t.indexOf("--");return-1!==r&&(-1===n||r<n)};const l=process.env;let f;function p(e){const t=function(e){if(!1===f)return 0;if(u("color=16m")||u("color=full")||u("color=truecolor"))return 3;if(u("color=256"))return 2;if(e&&!e.isTTY&&!0!==f)return 0;const t=f?1:0;if("win32"===process.platform){const e=i.default.release().split(".");return Number(process.versions.node.split(".")[0])>=8&&Number(e[0])>=10&&Number(e[2])>=10586?Number(e[2])>=14931?3:2:1}if("CI"in l)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(e=>e in l)||"codeship"===l.CI_NAME?1:t;if("TEAMCITY_VERSION"in l)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(l.TEAMCITY_VERSION)?1:0;if("truecolor"===l.COLORTERM)return 3;if("TERM_PROGRAM"in l){const e=parseInt((l.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(l.TERM_PROGRAM){case"iTerm.app":return e>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(l.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(l.TERM)||"COLORTERM"in l?1:(l.TERM,t)}(e);return function(e){return 0!==e&&{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}(t)}u("no-color")||u("no-colors")||u("color=false")?f=!1:(u("color")||u("colors")||u("color=true")||u("color=always"))&&(f=!0),"FORCE_COLOR"in l&&(f=0===l.FORCE_COLOR.length||0!==parseInt(l.FORCE_COLOR,10));var d={supportsColor:p,stdout:p(process.stdout),stderr:p(process.stderr)},m=1e3,h=60*m,g=60*h,O=24*g,y=7*O,b=365.25*O,v=function(e,t){t=t||{};var s=typeof e;if("string"===s&&e.length>0)return function(e){if((e=String(e)).length>100)return;var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!t)return;var s=parseFloat(t[1]);switch((t[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return s*b;case"weeks":case"week":case"w":return s*y;case"days":case"day":case"d":return s*O;case"hours":case"hour":case"hrs":case"hr":case"h":return s*g;case"minutes":case"minute":case"mins":case"min":case"m":return s*h;case"seconds":case"second":case"secs":case"sec":case"s":return s*m;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return}}(e);if("number"===s&&isFinite(e))return t.long?function(e){var t=Math.abs(e);if(t>=O)return C(e,t,O,"day");if(t>=g)return C(e,t,g,"hour");if(t>=h)return C(e,t,h,"minute");if(t>=m)return C(e,t,m,"second");return e+" ms"}(e):function(e){var t=Math.abs(e);if(t>=O)return Math.round(e/O)+"d";if(t>=g)return Math.round(e/g)+"h";if(t>=h)return Math.round(e/h)+"m";if(t>=m)return Math.round(e/m)+"s";return e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))};function C(e,t,s,r){var n=t>=1.5*s;return Math.round(e/s)+" "+r+(n?"s":"")}var R=function(e){function t(e){let r,n,o,c=null;function i(...e){if(!i.enabled)return;const s=i,n=Number(new Date),o=n-(r||n);s.diff=o,s.prev=r,s.curr=n,r=n,e[0]=t.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let c=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,(r,n)=>{if("%%"===r)return"%";c++;const o=t.formatters[n];if("function"==typeof o){const t=e[c];r=o.call(s,t),e.splice(c,1),c--}return r}),t.formatArgs.call(s,e);(s.log||t.log).apply(s,e)}return i.namespace=e,i.useColors=t.useColors(),i.color=t.selectColor(e),i.extend=s,i.destroy=t.destroy,Object.defineProperty(i,"enabled",{enumerable:!0,configurable:!1,get:()=>null!==c?c:(n!==t.namespaces&&(n=t.namespaces,o=t.enabled(e)),o),set:e=>{c=e}}),"function"==typeof t.init&&t.init(i),i}function s(e,s){const r=t(this.namespace+(void 0===s?":":s)+e);return r.log=this.log,r}function r(e,t){let s=0,r=0,n=-1,o=0;for(;s<e.length;)if(r<t.length&&(t[r]===e[s]||"*"===t[r]))"*"===t[r]?(n=r,o=s,r++):(s++,r++);else{if(-1===n)return!1;r=n+1,o++,s=o}for(;r<t.length&&"*"===t[r];)r++;return r===t.length}return t.debug=t,t.default=t,t.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},t.disable=function(){const e=[...t.names,...t.skips.map(e=>"-"+e)].join(",");return t.enable(""),e},t.enable=function(e){t.save(e),t.namespaces=e,t.names=[],t.skips=[];const s=("string"==typeof e?e:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(const e of s)"-"===e[0]?t.skips.push(e.slice(1)):t.names.push(e)},t.enabled=function(e){for(const s of t.skips)if(r(e,s))return!1;for(const s of t.names)if(r(e,s))return!0;return!1},t.humanize=v,t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach(s=>{t[s]=e[s]}),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let s=0;for(let t=0;t<e.length;t++)s=(s<<5)-s+e.charCodeAt(t),s|=0;return t.colors[Math.abs(s)%t.colors.length]},t.enable(t.load()),t},E=e.createCommonjsModule(function(e,t){t.init=function(e){e.inspectOpts={};const s=Object.keys(t.inspectOpts);for(let r=0;r<s.length;r++)e.inspectOpts[s[r]]=t.inspectOpts[s[r]]},t.log=function(...e){return process.stderr.write(c.default.formatWithOptions(t.inspectOpts,...e)+"\n")},t.formatArgs=function(s){const{namespace:r,useColors:n}=this;if(n){const t=this.color,n="[3"+(t<8?t:"8;5;"+t),o=` ${n};1m${r} `;s[0]=o+s[0].split("\n").join("\n"+o),s.push(n+"m+"+e.exports.humanize(this.diff)+"")}else s[0]=function(){if(t.inspectOpts.hideDate)return"";return(new Date).toISOString()+" "}()+r+" "+s[0]},t.save=function(e){e?process.env.DEBUG=e:delete process.env.DEBUG},t.load=function(){return process.env.DEBUG},t.useColors=function(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):o.default.isatty(process.stderr.fd)},t.destroy=c.default.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."),t.colors=[6,2,3,4,5,1];try{const e=d;e&&(e.stderr||e).level>=2&&(t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch(e){}t.inspectOpts=Object.keys(process.env).filter(e=>/^debug_/i.test(e)).reduce((e,t)=>{const s=t.substring(6).toLowerCase().replace(/_([a-z])/g,(e,t)=>t.toUpperCase());let r=process.env[t];return r=!!/^(yes|on|true|enabled)$/i.test(r)||!/^(no|off|false|disabled)$/i.test(r)&&("null"===r?null:Number(r)),e[s]=r,e},{}),e.exports=R(t);const{formatters:s}=e.exports;s.o=function(e){return this.inspectOpts.colors=this.useColors,c.default.inspect(e,this.inspectOpts).split("\n").map(e=>e.trim()).join(" ")},s.O=function(e){return this.inspectOpts.colors=this.useColors,c.default.inspect(e,this.inspectOpts)}}),M=e.createCommonjsModule(function(e){"undefined"==typeof process||"renderer"===process.type||!0===process.browser||process.__nwjs?e.exports=a:e.exports=E});module.exports=M;
1
+ "use strict";var e,r,s=require("./_commonjsHelpers-Bjf42z7h.js"),t=require("tty"),n=require("util"),o=require("os"),c={exports:{}};var i,u,a,l,f,p,d,m,h,g,O={exports:{}};function y(){return u?i:(u=1,i=(e,r)=>{r=r||process.argv;const s=e.startsWith("-")?"":1===e.length?"-":"--",t=r.indexOf(s+e),n=r.indexOf("--");return-1!==t&&(-1===n||t<n)})}function b(){if(l)return a;l=1;const e=o,r=y(),s=process.env;let t;function n(n){const o=function(n){if(!1===t)return 0;if(r("color=16m")||r("color=full")||r("color=truecolor"))return 3;if(r("color=256"))return 2;if(n&&!n.isTTY&&!0!==t)return 0;const o=t?1:0;if("win32"===process.platform){const r=e.release().split(".");return Number(process.versions.node.split(".")[0])>=8&&Number(r[0])>=10&&Number(r[2])>=10586?Number(r[2])>=14931?3:2:1}if("CI"in s)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(e=>e in s)||"codeship"===s.CI_NAME?1:o;if("TEAMCITY_VERSION"in s)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(s.TEAMCITY_VERSION)?1:0;if("truecolor"===s.COLORTERM)return 3;if("TERM_PROGRAM"in s){const e=parseInt((s.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(s.TERM_PROGRAM){case"iTerm.app":return e>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(s.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(s.TERM)||"COLORTERM"in s?1:(s.TERM,o)}(n);return function(e){return 0!==e&&{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}(o)}return r("no-color")||r("no-colors")||r("color=false")?t=!1:(r("color")||r("colors")||r("color=true")||r("color=always"))&&(t=!0),"FORCE_COLOR"in s&&(t=0===s.FORCE_COLOR.length||0!==parseInt(s.FORCE_COLOR,10)),a={supportsColor:n,stdout:n(process.stdout),stderr:n(process.stderr)}}function v(){if(p)return f;p=1;var e=1e3,r=60*e,s=60*r,t=24*s,n=7*t,o=365.25*t;function c(e,r,s,t){var n=r>=1.5*s;return Math.round(e/s)+" "+t+(n?"s":"")}return f=function(i,u){u=u||{};var a=typeof i;if("string"===a&&i.length>0)return function(c){if((c=String(c)).length>100)return;var i=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(c);if(!i)return;var u=parseFloat(i[1]);switch((i[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*o;case"weeks":case"week":case"w":return u*n;case"days":case"day":case"d":return u*t;case"hours":case"hour":case"hrs":case"hr":case"h":return u*s;case"minutes":case"minute":case"mins":case"min":case"m":return u*r;case"seconds":case"second":case"secs":case"sec":case"s":return u*e;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(i);if("number"===a&&isFinite(i))return u.long?function(n){var o=Math.abs(n);if(o>=t)return c(n,o,t,"day");if(o>=s)return c(n,o,s,"hour");if(o>=r)return c(n,o,r,"minute");if(o>=e)return c(n,o,e,"second");return n+" ms"}(i):function(n){var o=Math.abs(n);if(o>=t)return Math.round(n/t)+"d";if(o>=s)return Math.round(n/s)+"h";if(o>=r)return Math.round(n/r)+"m";if(o>=e)return Math.round(n/e)+"s";return n+"ms"}(i);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(i))}}function C(){return h||(h=1,function(e,r){const s=t,o=n;r.init=function(e){e.inspectOpts={};const s=Object.keys(r.inspectOpts);for(let t=0;t<s.length;t++)e.inspectOpts[s[t]]=r.inspectOpts[s[t]]},r.log=function(...e){return process.stderr.write(o.formatWithOptions(r.inspectOpts,...e)+"\n")},r.formatArgs=function(s){const{namespace:t,useColors:n}=this;if(n){const r=this.color,n="[3"+(r<8?r:"8;5;"+r),o=` ${n};1m${t} `;s[0]=o+s[0].split("\n").join("\n"+o),s.push(n+"m+"+e.exports.humanize(this.diff)+"")}else s[0]=function(){if(r.inspectOpts.hideDate)return"";return(new Date).toISOString()+" "}()+t+" "+s[0]},r.save=function(e){e?process.env.DEBUG=e:delete process.env.DEBUG},r.load=function(){return process.env.DEBUG},r.useColors=function(){return"colors"in r.inspectOpts?Boolean(r.inspectOpts.colors):s.isatty(process.stderr.fd)},r.destroy=o.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."),r.colors=[6,2,3,4,5,1];try{const e=b();e&&(e.stderr||e).level>=2&&(r.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch(e){}r.inspectOpts=Object.keys(process.env).filter(e=>/^debug_/i.test(e)).reduce((e,r)=>{const s=r.substring(6).toLowerCase().replace(/_([a-z])/g,(e,r)=>r.toUpperCase());let t=process.env[r];return t=!!/^(yes|on|true|enabled)$/i.test(t)||!/^(no|off|false|disabled)$/i.test(t)&&("null"===t?null:Number(t)),e[s]=t,e},{}),e.exports=(m||(m=1,d=function(e){function r(e){let t,n,o,c=null;function i(...e){if(!i.enabled)return;const s=i,n=Number(new Date),o=n-(t||n);s.diff=o,s.prev=t,s.curr=n,t=n,e[0]=r.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let c=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,(t,n)=>{if("%%"===t)return"%";c++;const o=r.formatters[n];if("function"==typeof o){const r=e[c];t=o.call(s,r),e.splice(c,1),c--}return t}),r.formatArgs.call(s,e),(s.log||r.log).apply(s,e)}return i.namespace=e,i.useColors=r.useColors(),i.color=r.selectColor(e),i.extend=s,i.destroy=r.destroy,Object.defineProperty(i,"enabled",{enumerable:!0,configurable:!1,get:()=>null!==c?c:(n!==r.namespaces&&(n=r.namespaces,o=r.enabled(e)),o),set:e=>{c=e}}),"function"==typeof r.init&&r.init(i),i}function s(e,s){const t=r(this.namespace+(void 0===s?":":s)+e);return t.log=this.log,t}function t(e,r){let s=0,t=0,n=-1,o=0;for(;s<e.length;)if(t<r.length&&(r[t]===e[s]||"*"===r[t]))"*"===r[t]?(n=t,o=s,t++):(s++,t++);else{if(-1===n)return!1;t=n+1,o++,s=o}for(;t<r.length&&"*"===r[t];)t++;return t===r.length}return r.debug=r,r.default=r,r.coerce=function(e){return e instanceof Error?e.stack||e.message:e},r.disable=function(){const e=[...r.names,...r.skips.map(e=>"-"+e)].join(",");return r.enable(""),e},r.enable=function(e){r.save(e),r.namespaces=e,r.names=[],r.skips=[];const s=("string"==typeof e?e:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(const e of s)"-"===e[0]?r.skips.push(e.slice(1)):r.names.push(e)},r.enabled=function(e){for(const s of r.skips)if(t(e,s))return!1;for(const s of r.names)if(t(e,s))return!0;return!1},r.humanize=v(),r.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach(s=>{r[s]=e[s]}),r.names=[],r.skips=[],r.formatters={},r.selectColor=function(e){let s=0;for(let r=0;r<e.length;r++)s=(s<<5)-s+e.charCodeAt(r),s|=0;return r.colors[Math.abs(s)%r.colors.length]},r.enable(r.load()),r}),d)(r);const{formatters:c}=e.exports;c.o=function(e){return this.inspectOpts.colors=this.useColors,o.inspect(e,this.inspectOpts).split("\n").map(e=>e.trim()).join(" ")},c.O=function(e){return this.inspectOpts.colors=this.useColors,o.inspect(e,this.inspectOpts)}}(O,O.exports)),O.exports}var R=(g||(g=1,"undefined"==typeof process||"renderer"===process.type||!0===process.browser||process.__nwjs?c.exports=r?e:(r=1,e={}):c.exports=C()),c.exports),E=s.getDefaultExportFromCjs(R);module.exports=E;
@@ -0,0 +1,4 @@
1
+ "use strict";var e=require("./installer-CJlDenLg.js"),t=require("./transform-target-Doak2S1q.js"),r=require("./project-C3bWzV0O.js");require("assert"),require("fs");var o=require("./export-target-CN6RA_mA.js");exports.exportProject=async function(a={}){e.env.reporter.log(e.Message.ExportProjectLoading,"[1/3] Loading project...");const i=await r.loadProject();if(!a.target&&!i.manifest.target)throw new e.CliError(e.ErrorCode.ExportNoTarget,e.dedent`
2
+ No default target found for project,
3
+ use --target TYPE to export from a specific target.
4
+ `);let n,s=!1;if(i.manifest.target)a.target&&a.target!==i.manifest.target.type||(n=i.manifest.target);else{const t=a.target,r=i.manifest.name;n={type:t,name:r,path:`targets/${t}`,filename:`${e.sanitize(r)}.${t}`},s=!0}if(!n)throw new e.CliError(e.ErrorCode.ExportNoMatching,`No matching target found for type "${a.target}" in project.`);const p=await r.fetchDependencies(i);let g;try{a.completed?g=a.completed:(g=e.join(i.paths.staging,"export"),e.env.reporter.log(e.Message.ExportToStaging,`\n[2/3] Exporting src from "${n.filename}"`),await e.mkdirsExports.ensureDir(g),await e.emptyExports.emptyDir(g),await t.exportTo(i,n,g,a)),e.env.reporter.log(e.Message.ExportToProject,"\n[3/3] Updating project"),await o.exportTarget(n,{project:i,dependencies:p,blankTarget:s},g)}catch(e){throw e}finally{g&&await e.removeExports.remove(g)}};
@@ -0,0 +1,4 @@
1
+ "use strict";var e=require("./installer-CJlDenLg.js"),n=require("./project-C3bWzV0O.js"),t=require("path"),r=require("./load-from-project-Bpb6Ne_i.js"),o=require("./transform-target-Doak2S1q.js");async function a(t,r){for(const n of r.components.added){const r={name:n.name,path:e.join(t.paths.dir,`src/${n.filename}`)};t.manifest.src.push(r)}for(const e of r.components.removed){const n=t.manifest.src.findIndex(n=>n.name===e.name);t.manifest.src.splice(n,1)}for(let e of r.references.added)t.manifest.references.push(e);for(const e of r.references.removed){const n=t.manifest.references.findIndex(n=>n.name===e.name);t.manifest.references.splice(n,1)}await n.writeManifest(t.manifest,t.paths.dir)}async function s(n,r){const o=t.dirname(n);if(await e.mkdirsExports.ensureDir(o),await e.writeFile(n,r.code),r.binaryPath){if(!r.details.binary)throw new Error(`Binary data missing for component "${r.name}"`);await e.writeFile(e.join(o,r.binaryPath),r.details.binary)}}require("assert");const i=[".frx"];async function c(n){const a=o.walk(n,{directories:!1}).filter(e=>"project.json"!==e&&!e.startsWith("target")&&!e.startsWith("staged")&&!(e=>!(""!==t.extname(e)))(e)).map(t=>e.join(n,t)),{name:s,references:c}=await async function(n){const t=e.join(n,"project.json");if(!await e.pathExistsExports.pathExists(t))return{name:"VBAProject",references:[]};return await e.jsonfileExports.readJson(t)}(n),m={},d=a.filter(e=>{if(!function(e){return i.includes(t.extname(e))}(e))return!0;const n=p(e);return m[n]=e,!1}),f=await e.parallel(d,async n=>{const o=p(n),a=r.extensionToType[t.extname(n)],s=await e.readFile(n),i=m[o]&&await e.readFile(m[o]);if(!a)throw new e.CliError(e.ErrorCode.ComponentUnrecognized,`Unrecognized component extension "${t.extname(n)}" (at "${n}").`);return new r.Component(a,s,{binary:i})},{progress:e.env.reporter.progress("Loading exported components")});return f.sort(r.byComponentName),{name:s,components:f,references:c,fromDependencies:{components:new Map,references:new Map}}}function p(e){return t.basename(e,t.extname(e))}async function m(r,a,s){let i=e.join(r.paths.build,a.filename);const c=e.join(s,"target");if(!await e.pathExistsExports.pathExists(i))throw new e.CliError(e.ErrorCode.ExportTargetNotFound,e.dedent`
2
+ Could not find built target for type "${a.type}"
3
+ (checked "${i}").
4
+ `);if(!e.env.isWindows){const n=e.join(s,"staged",a.filename);await e.pathExistsExports.pathExists(n)||(await e.mkdirsExports.ensureDir(t.dirname(n)),await e.copyExports.copy(i,n)),i=n}return await e.mkdirsExports.ensureDir(c),await n.unzip(i,c,{filter:o.filterTarget,map:o.mapTarget}),c}exports.exportTarget=async function(n,t,i){const{project:p,dependencies:d,blankTarget:f}=t;let l;f||(l=await m(p,n,i));const u=await r.loadFromProject(p,d),w=await c(i),h=function(e,n){const t={components:{added:[],changed:[],removed:[]},references:{added:[],changed:[],removed:[]}},o={components:new Map,references:new Map};for(const n of e.components)o.components.set(n.name,n);for(const n of e.references)o.references.set(n.name,n);for(const r of n.components){const n=r.name,a=o.components.get(n);o.components.delete(n),a&&e.fromDependencies.components.has(a)||(a?r.code!==a.code&&(r.details.path=a.details.path,t.components.changed.push(r)):t.components.added.push(r))}for(const e of o.components.values())t.components.removed.push(e);t.components.added.sort(r.byComponentName),t.components.changed.sort(r.byComponentName),t.components.removed.sort(r.byComponentName);for(const r of n.references){const n=r.name,a=o.references.get(n);o.references.delete(n),a&&e.fromDependencies.references.has(a)||(a?r.guid===a.guid&&r.major===a.major&&r.minor===a.minor||t.references.changed.push(r):t.references.added.push(r))}for(const e of o.references.values())t.references.removed.push(e);return t}(u,await o.toSrc(w));await async function(n,t){const r=e.env.reporter.progress("Updating src files"),o=r.start,i=r.done;r.start=()=>{},r.done=()=>{},o(),await e.parallel(t.components.changed,e=>s(e.details.path,e),{progress:r}),await e.parallel(t.components.added,async t=>{const r=e.join(n.paths.dir,"src",t.filename);t.details.path=r,await s(r,t)},{progress:r}),await e.parallel(t.components.removed,async n=>{await e.removeExports.remove(n.details.path)},{progress:r}),await a(n,t),i()}(p,h),f||(await e.removeExports.remove(n.path),await e.copyExports.copy(l,n.path)),await e.removeExports.remove(i)},exports.extractTarget=m;
@@ -1,4 +1,4 @@
1
- "use strict";var t=require("./installer-2f42d28c.js");exports.getTarget=function(e,r){let a,o=!1;if(r){if(e.manifest.target)e.manifest.target.type===r&&(a=e.manifest.target);else{const n=r,i=e.manifest.name;a={type:n,name:i,path:"target",filename:`${t.sanitize(i)}.${n}`},o=!0}if(!a)throw new t.CliError(t.ErrorCode.TargetNoMatching,`No matching target found for type "${r}" in project.`)}else e.manifest.target&&(a=e.manifest.target);if(!a)throw new t.CliError(t.ErrorCode.TargetNoDefault,t.dedent`
1
+ "use strict";var t=require("./installer-CJlDenLg.js");exports.getTarget=function(e,r){let a,o=!1;if(r){if(e.manifest.target)e.manifest.target.type===r&&(a=e.manifest.target);else{const n=r,i=e.manifest.name;a={type:n,name:i,path:"target",filename:`${t.sanitize(i)}.${n}`},o=!0}if(!a)throw new t.CliError(t.ErrorCode.TargetNoMatching,`No matching target found for type "${r}" in project.`)}else e.manifest.target&&(a=e.manifest.target);if(!a)throw new t.CliError(t.ErrorCode.TargetNoDefault,t.dedent`
2
2
  No default target found for project.
3
3
 
4
4
  Use --target TYPE for a blank target
@@ -0,0 +1 @@
1
+ "use strict";var t,r,e,n,o,i,a,f,u,y,p,c,l,s,b,g,h,d,A,m,v,P,w,S,j,O,E,F,R,U,I,B,M,_,T,x,N,G,k,D,C,W,L,V,q,J,$,H,z,Y,K,Q,X,Z,tt,rt,et,nt,ot,it,at,ft,ut,yt,pt,ct,lt,st,bt,gt,ht,dt,At,mt,vt,Pt,wt,St,jt,Ot,Et=require("./index-CEojr58e.js"),Ft=require("./_commonjsHelpers-Bjf42z7h.js");function Rt(){return n?e:(n=1,e=TypeError)}function Ut(){return i?o:(i=1,o=Object)}function It(){return f?a:(f=1,a=Error)}function Bt(){return y?u:(y=1,u=EvalError)}function Mt(){return c?p:(c=1,p=RangeError)}function _t(){return s?l:(s=1,l=ReferenceError)}function Tt(){return g?b:(g=1,b=SyntaxError)}function xt(){return d?h:(d=1,h=URIError)}function Nt(){return m?A:(m=1,A=Math.abs)}function Gt(){return P?v:(P=1,v=Math.floor)}function kt(){return S?w:(S=1,w=Math.max)}function Dt(){return O?j:(O=1,j=Math.min)}function Ct(){return F?E:(F=1,E=Math.pow)}function Wt(){return U?R:(U=1,R=Math.round)}function Lt(){return B?I:(B=1,I=Number.isNaN||function(t){return t!=t})}function Vt(){if(_)return M;_=1;var t=Lt();return M=function(r){return t(r)||0===r?r:r<0?-1:1}}function qt(){return x?T:(x=1,T=Object.getOwnPropertyDescriptor)}function Jt(){if(G)return N;G=1;var t=qt();if(t)try{t([],"length")}catch(r){t=null}return N=t}function $t(){if(D)return k;D=1;var t=Object.defineProperty||!1;if(t)try{t({},"a",{value:1})}catch(r){t=!1}return k=t}function Ht(){return W?C:(W=1,C=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},r=Symbol("test"),e=Object(r);if("string"==typeof r)return!1;if("[object Symbol]"!==Object.prototype.toString.call(r))return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;for(var n in t[r]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var o=Object.getOwnPropertySymbols(t);if(1!==o.length||o[0]!==r)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,r))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(t,r);if(42!==i.value||!0!==i.enumerable)return!1}return!0})}function zt(){if(V)return L;V=1;var t="undefined"!=typeof Symbol&&Symbol,r=Ht();return L=function(){return"function"==typeof t&&("function"==typeof Symbol&&("symbol"==typeof t("foo")&&("symbol"==typeof Symbol("bar")&&r())))}}function Yt(){return J?q:(J=1,q="undefined"!=typeof Reflect&&Reflect.getPrototypeOf||null)}function Kt(){return H?$:(H=1,$=Ut().getPrototypeOf||null)}function Qt(){if(Y)return z;Y=1;var t=Object.prototype.toString,r=Math.max,e=function(t,r){for(var e=[],n=0;n<t.length;n+=1)e[n]=t[n];for(var o=0;o<r.length;o+=1)e[o+t.length]=r[o];return e};return z=function(n){var o=this;if("function"!=typeof o||"[object Function]"!==t.apply(o))throw new TypeError("Function.prototype.bind called on incompatible "+o);for(var i,a=function(t,r){for(var e=[],n=r,o=0;n<t.length;n+=1,o+=1)e[o]=t[n];return e}(arguments,1),f=r(0,o.length-a.length),u=[],y=0;y<f;y++)u[y]="$"+y;if(i=Function("binder","return function ("+function(t,r){for(var e="",n=0;n<t.length;n+=1)e+=t[n],n+1<t.length&&(e+=r);return e}(u,",")+"){ return binder.apply(this,arguments); }")(function(){if(this instanceof i){var t=o.apply(this,e(a,arguments));return Object(t)===t?t:this}return o.apply(n,e(a,arguments))}),o.prototype){var p=function(){};p.prototype=o.prototype,i.prototype=new p,p.prototype=null}return i},z}function Xt(){if(Q)return K;Q=1;var t=Qt();return K=Function.prototype.bind||t}function Zt(){return Z?X:(Z=1,X=Function.prototype.call)}function tr(){return rt?tt:(rt=1,tt=Function.prototype.apply)}function rr(){if(it)return ot;it=1;var t=Xt(),r=tr(),e=Zt(),n=nt?et:(nt=1,et="undefined"!=typeof Reflect&&Reflect&&Reflect.apply);return ot=n||t.call(e,r)}function er(){if(ft)return at;ft=1;var t=Xt(),r=Rt(),e=Zt(),n=rr();return at=function(o){if(o.length<1||"function"!=typeof o[0])throw new r("a function is required");return n(t,e,o)}}function nr(){if(yt)return ut;yt=1;var t,r=er(),e=Jt();try{t=[].__proto__===Array.prototype}catch(t){if(!t||"object"!=typeof t||!("code"in t)||"ERR_PROTO_ACCESS"!==t.code)throw t}var n=!!t&&e&&e(Object.prototype,"__proto__"),o=Object,i=o.getPrototypeOf;return ut=n&&"function"==typeof n.get?r([n.get]):"function"==typeof i&&function(t){return i(null==t?t:o(t))}}function or(){if(ct)return pt;ct=1;var t=Yt(),r=Kt(),e=nr();return pt=t?function(r){return t(r)}:r?function(t){if(!t||"object"!=typeof t&&"function"!=typeof t)throw new TypeError("getProto: not an object");return r(t)}:e?function(t){return e(t)}:null}function ir(){if(st)return lt;st=1;var t=Function.prototype.call,r=Object.prototype.hasOwnProperty,e=Xt();return lt=e.call(t,r)}function ar(){if(gt)return bt;var t;gt=1;var r=Ut(),e=It(),n=Bt(),o=Mt(),i=_t(),a=Tt(),f=Rt(),u=xt(),y=Nt(),p=Gt(),c=kt(),l=Dt(),s=Ct(),b=Wt(),g=Vt(),h=Function,d=function(t){try{return h('"use strict"; return ('+t+").constructor;")()}catch(t){}},A=Jt(),m=$t(),v=function(){throw new f},P=A?function(){try{return v}catch(t){try{return A(arguments,"callee").get}catch(t){return v}}}():v,w=zt()(),S=or(),j=Kt(),O=Yt(),E=tr(),F=Zt(),R={},U="undefined"!=typeof Uint8Array&&S?S(Uint8Array):t,I={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?t:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?t:ArrayBuffer,"%ArrayIteratorPrototype%":w&&S?S([][Symbol.iterator]()):t,"%AsyncFromSyncIteratorPrototype%":t,"%AsyncFunction%":R,"%AsyncGenerator%":R,"%AsyncGeneratorFunction%":R,"%AsyncIteratorPrototype%":R,"%Atomics%":"undefined"==typeof Atomics?t:Atomics,"%BigInt%":"undefined"==typeof BigInt?t:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?t:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?t:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?t:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":e,"%eval%":eval,"%EvalError%":n,"%Float16Array%":"undefined"==typeof Float16Array?t:Float16Array,"%Float32Array%":"undefined"==typeof Float32Array?t:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?t:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?t:FinalizationRegistry,"%Function%":h,"%GeneratorFunction%":R,"%Int8Array%":"undefined"==typeof Int8Array?t:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?t:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?t:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":w&&S?S(S([][Symbol.iterator]())):t,"%JSON%":"object"==typeof JSON?JSON:t,"%Map%":"undefined"==typeof Map?t:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&w&&S?S((new Map)[Symbol.iterator]()):t,"%Math%":Math,"%Number%":Number,"%Object%":r,"%Object.getOwnPropertyDescriptor%":A,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?t:Promise,"%Proxy%":"undefined"==typeof Proxy?t:Proxy,"%RangeError%":o,"%ReferenceError%":i,"%Reflect%":"undefined"==typeof Reflect?t:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?t:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&w&&S?S((new Set)[Symbol.iterator]()):t,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?t:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":w&&S?S(""[Symbol.iterator]()):t,"%Symbol%":w?Symbol:t,"%SyntaxError%":a,"%ThrowTypeError%":P,"%TypedArray%":U,"%TypeError%":f,"%Uint8Array%":"undefined"==typeof Uint8Array?t:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?t:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?t:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?t:Uint32Array,"%URIError%":u,"%WeakMap%":"undefined"==typeof WeakMap?t:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?t:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?t:WeakSet,"%Function.prototype.call%":F,"%Function.prototype.apply%":E,"%Object.defineProperty%":m,"%Object.getPrototypeOf%":j,"%Math.abs%":y,"%Math.floor%":p,"%Math.max%":c,"%Math.min%":l,"%Math.pow%":s,"%Math.round%":b,"%Math.sign%":g,"%Reflect.getPrototypeOf%":O};if(S)try{null.error}catch(t){var B=S(S(t));I["%Error.prototype%"]=B}var M=function t(r){var e;if("%AsyncFunction%"===r)e=d("async function () {}");else if("%GeneratorFunction%"===r)e=d("function* () {}");else if("%AsyncGeneratorFunction%"===r)e=d("async function* () {}");else if("%AsyncGenerator%"===r){var n=t("%AsyncGeneratorFunction%");n&&(e=n.prototype)}else if("%AsyncIteratorPrototype%"===r){var o=t("%AsyncGenerator%");o&&S&&(e=S(o.prototype))}return I[r]=e,e},_={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},T=Xt(),x=ir(),N=T.call(F,Array.prototype.concat),G=T.call(E,Array.prototype.splice),k=T.call(F,String.prototype.replace),D=T.call(F,String.prototype.slice),C=T.call(F,RegExp.prototype.exec),W=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,L=/\\(\\)?/g,V=function(t,r){var e,n=t;if(x(_,n)&&(n="%"+(e=_[n])[0]+"%"),x(I,n)){var o=I[n];if(o===R&&(o=M(n)),void 0===o&&!r)throw new f("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:e,name:n,value:o}}throw new a("intrinsic "+t+" does not exist!")};return bt=function(t,r){if("string"!=typeof t||0===t.length)throw new f("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof r)throw new f('"allowMissing" argument must be a boolean');if(null===C(/^%?[^%]*%?$/,t))throw new a("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var e=function(t){var r=D(t,0,1),e=D(t,-1);if("%"===r&&"%"!==e)throw new a("invalid intrinsic syntax, expected closing `%`");if("%"===e&&"%"!==r)throw new a("invalid intrinsic syntax, expected opening `%`");var n=[];return k(t,W,function(t,r,e,o){n[n.length]=e?k(o,L,"$1"):r||t}),n}(t),n=e.length>0?e[0]:"",o=V("%"+n+"%",r),i=o.name,u=o.value,y=!1,p=o.alias;p&&(n=p[0],G(e,N([0,1],p)));for(var c=1,l=!0;c<e.length;c+=1){var s=e[c],b=D(s,0,1),g=D(s,-1);if(('"'===b||"'"===b||"`"===b||'"'===g||"'"===g||"`"===g)&&b!==g)throw new a("property names with quotes must have matching quotes");if("constructor"!==s&&l||(y=!0),x(I,i="%"+(n+="."+s)+"%"))u=I[i];else if(null!=u){if(!(s in u)){if(!r)throw new f("base intrinsic for "+t+" exists, but the property is not available.");return}if(A&&c+1>=e.length){var h=A(u,s);u=(l=!!h)&&"get"in h&&!("originalValue"in h.get)?h.get:u[s]}else l=x(u,s),u=u[s];l&&!y&&(I[i]=u)}}return u},bt}function fr(){if(dt)return ht;dt=1;var t=ar(),r=er(),e=r([t("%String.prototype.indexOf%")]);return ht=function(n,o){var i=t(n,!!o);return"function"==typeof i&&e(n,".prototype.")>-1?r([i]):i}}function ur(){if(mt)return At;mt=1;var t,r,e=Function.prototype.toString,n="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof n&&"function"==typeof Object.defineProperty)try{t=Object.defineProperty({},"length",{get:function(){throw r}}),r={},n(function(){throw 42},null,t)}catch(t){t!==r&&(n=null)}else n=null;var o=/^\s*class\b/,i=function(t){try{var r=e.call(t);return o.test(r)}catch(t){return!1}},a=function(t){try{return!i(t)&&(e.call(t),!0)}catch(t){return!1}},f=Object.prototype.toString,u="function"==typeof Symbol&&!!Symbol.toStringTag,y=!(0 in[,]),p=function(){return!1};if("object"==typeof document){var c=document.all;f.call(c)===f.call(document.all)&&(p=function(t){if((y||!t)&&(void 0===t||"object"==typeof t))try{var r=f.call(t);return("[object HTMLAllCollection]"===r||"[object HTML document.all class]"===r||"[object HTMLCollection]"===r||"[object Object]"===r)&&null==t("")}catch(t){}return!1})}return At=n?function(e){if(p(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;try{n(e,null,t)}catch(t){if(t!==r)return!1}return!i(e)&&a(e)}:function(t){if(p(t))return!0;if(!t)return!1;if("function"!=typeof t&&"object"!=typeof t)return!1;if(u)return a(t);if(i(t))return!1;var r=f.call(t);return!("[object Function]"!==r&&"[object GeneratorFunction]"!==r&&!/^\[object HTML/.test(r))&&a(t)}}function yr(){if(Pt)return vt;Pt=1;var t=ur(),r=Object.prototype.toString,e=Object.prototype.hasOwnProperty;return vt=function(n,o,i){if(!t(o))throw new TypeError("iterator must be a function");var a,f;arguments.length>=3&&(a=i),f=n,"[object Array]"===r.call(f)?function(t,r,n){for(var o=0,i=t.length;o<i;o++)e.call(t,o)&&(null==n?r(t[o],o,t):r.call(n,t[o],o,t))}(n,o,a):"string"==typeof n?function(t,r,e){for(var n=0,o=t.length;n<o;n++)null==e?r(t.charAt(n),n,t):r.call(e,t.charAt(n),n,t)}(n,o,a):function(t,r,n){for(var o in t)e.call(t,o)&&(null==n?r(t[o],o,t):r.call(n,t[o],o,t))}(n,o,a)},vt}function pr(){return St?wt:(St=1,wt=["Float16Array","Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"])}function cr(){if(Ot)return jt;Ot=1;var t=pr(),r="undefined"==typeof globalThis?Ft.commonjsGlobal:globalThis;return jt=function(){for(var e=[],n=0;n<t.length;n++)"function"==typeof r[t[n]]&&(e[e.length]=t[n]);return e}}var lr,sr,br,gr,hr,dr,Ar,mr,vr,Pr,wr,Sr,jr,Or,Er,Fr,Rr,Ur,Ir,Br={exports:{}};function Mr(){if(sr)return lr;sr=1;var t=$t(),r=Tt(),e=Rt(),n=Jt();return lr=function(o,i,a){if(!o||"object"!=typeof o&&"function"!=typeof o)throw new e("`obj` must be an object or a function`");if("string"!=typeof i&&"symbol"!=typeof i)throw new e("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new e("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new e("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new e("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new e("`loose`, if provided, must be a boolean");var f=arguments.length>3?arguments[3]:null,u=arguments.length>4?arguments[4]:null,y=arguments.length>5?arguments[5]:null,p=arguments.length>6&&arguments[6],c=!!n&&n(o,i);if(t)t(o,i,{configurable:null===y&&c?c.configurable:!y,enumerable:null===f&&c?c.enumerable:!f,value:a,writable:null===u&&c?c.writable:!u});else{if(!p&&(f||u||y))throw new r("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");o[i]=a}},lr}function _r(){if(gr)return br;gr=1;var t=$t(),r=function(){return!!t};return r.hasArrayLengthDefineBug=function(){if(!t)return null;try{return 1!==t([],"length",{value:1}).length}catch(t){return!0}},br=r}function Tr(){if(dr)return hr;dr=1;var t=ar(),r=Mr(),e=_r()(),n=Jt(),o=Rt(),i=t("%Math.floor%");return hr=function(t,a){if("function"!=typeof t)throw new o("`fn` is not a function");if("number"!=typeof a||a<0||a>4294967295||i(a)!==a)throw new o("`length` must be a positive 32-bit integer");var f=arguments.length>2&&!!arguments[2],u=!0,y=!0;if("length"in t&&n){var p=n(t,"length");p&&!p.configurable&&(u=!1),p&&!p.writable&&(y=!1)}return(u||y||!f)&&(e?r(t,"length",a,!0,!0):r(t,"length",a)),t},hr}function xr(){if(mr)return Ar;mr=1;var t=Xt(),r=tr(),e=rr();return Ar=function(){return e(t,r,arguments)},Ar}function Nr(){return vr||(vr=1,function(t){var r=Tr(),e=$t(),n=er(),o=xr();t.exports=function(t){var e=n(arguments),o=t.length-(arguments.length-1);return r(e,1+(o>0?o:0),!0)},e?e(t.exports,"apply",{value:o}):t.exports.apply=o}(Br)),Br.exports}function Gr(){if(jr)return Sr;jr=1;var t=yr(),r=cr(),e=Nr(),n=fr(),o=Jt(),i=or(),a=n("Object.prototype.toString"),f=function(){if(wr)return Pr;wr=1;var t=Ht();return Pr=function(){return t()&&!!Symbol.toStringTag}}()(),u="undefined"==typeof globalThis?Ft.commonjsGlobal:globalThis,y=r(),p=n("String.prototype.slice"),c=n("Array.prototype.indexOf",!0)||function(t,r){for(var e=0;e<t.length;e+=1)if(t[e]===r)return e;return-1},l={__proto__:null};t(y,f&&o&&i?function(t){var r=new u[t];if(Symbol.toStringTag in r&&i){var n=i(r),a=o(n,Symbol.toStringTag);if(!a&&n){var f=i(n);a=o(f,Symbol.toStringTag)}if(a&&a.get){var y=e(a.get);l["$"+t]=y}}}:function(t){var r=new u[t],n=r.slice||r.set;if(n){var o=e(n);l["$"+t]=o}});return Sr=function(r){if(!r||"object"!=typeof r)return!1;if(!f){var e=p(a(r),8,-1);return c(y,e)>-1?e:"Object"===e&&function(r){var e=!1;return t(l,function(t,n){if(!e)try{t(r),e=p(n,1)}catch(t){}}),e}(r)}return o?function(r){var e=!1;return t(l,function(t,n){if(!e)try{"$"+t(r)===n&&(e=p(n,1))}catch(t){}}),e}(r):null}}function kr(){if(Er)return Or;Er=1;var t=Gr();return Or=function(r){return!!t(r)}}function Dr(){if(Rr)return Fr;Rr=1;var t=Rt(),r=fr()("TypedArray.prototype.buffer",!0),e=kr();return Fr=r||function(r){if(!e(r))throw new t("Not a Typed Array");return r.buffer}}exports.requireToBuffer=function(){if(Ir)return Ur;Ir=1;var e=Et.requireSafeBuffer().Buffer,n=function(){if(r)return t;r=1;var e={}.toString;return t=Array.isArray||function(t){return"[object Array]"==e.call(t)}}(),o=Dr(),i=ArrayBuffer.isView||function(t){try{return o(t),!0}catch(t){return!1}},a="undefined"!=typeof Uint8Array,f="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,u=f&&(e.prototype instanceof Uint8Array||e.TYPED_ARRAY_SUPPORT);return Ur=function(t,r){if(e.isBuffer(t))return t.constructor&&!("isBuffer"in t)?e.from(t):t;if("string"==typeof t)return e.from(t,r);if(f&&i(t)){if(0===t.byteLength)return e.alloc(0);if(u){var o=e.from(t.buffer,t.byteOffset,t.byteLength);if(o.byteLength===t.byteLength)return o}var y=t instanceof Uint8Array?t:new Uint8Array(t.buffer,t.byteOffset,t.byteLength),p=e.from(y);if(p.length===t.byteLength)return p}if(a&&t instanceof Uint8Array)return e.from(t);var c=n(t);if(c)for(var l=0;l<t.length;l+=1){var s=t[l];if("number"!=typeof s||s<0||s>255||~~s!==s)throw new RangeError("Array items must be numbers in the range 0-255.")}if(c||e.isBuffer(t)&&t.constructor&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t))return e.from(t);throw new TypeError('The "data" argument must be a string, an Array, a Buffer, a Uint8Array, or a DataView.')}};
@@ -0,0 +1,2 @@
1
+ "use strict";var r,e,t=require("buffer"),o={exports:{}},n={exports:{}};var u,f={exports:{}};
2
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */exports.requireInherits=function(){if(e)return o.exports;e=1;try{var t=require("util");if("function"!=typeof t.inherits)throw"";o.exports=t.inherits}catch(e){o.exports=(r||(r=1,"function"==typeof Object.create?n.exports=function(r,e){e&&(r.super_=e,r.prototype=Object.create(e.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}))}:n.exports=function(r,e){if(e){r.super_=e;var t=function(){};t.prototype=e.prototype,r.prototype=new t,r.prototype.constructor=r}}),n.exports)}return o.exports},exports.requireSafeBuffer=function(){return u||(u=1,function(r,e){var o=t,n=o.Buffer;function u(r,e){for(var t in r)e[t]=r[t]}function f(r,e,t){return n(r,e,t)}n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow?r.exports=o:(u(o,e),e.Buffer=f),f.prototype=Object.create(n.prototype),u(n,f),f.from=function(r,e,t){if("number"==typeof r)throw new TypeError("Argument must not be a number");return n(r,e,t)},f.alloc=function(r,e,t){if("number"!=typeof r)throw new TypeError("Argument must be a number");var o=n(r);return void 0!==e?"string"==typeof t?o.fill(e,t):o.fill(e):o.fill(0),o},f.allocUnsafe=function(r){if("number"!=typeof r)throw new TypeError("Argument must be a number");return n(r)},f.allocUnsafeSlow=function(r){if("number"!=typeof r)throw new TypeError("Argument must be a number");return o.SlowBuffer(r)}}(f,f.exports)),f.exports};