@platforma-sdk/tengo-builder 1.14.11 → 1.14.13
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/dist/commands/build.d.ts +5 -4
- package/dist/commands/build.d.ts.map +1 -1
- package/dist/commands/check.d.ts +2 -1
- package/dist/commands/check.d.ts.map +1 -1
- package/dist/commands/dump/libs.d.ts +2 -1
- package/dist/commands/dump/libs.d.ts.map +1 -1
- package/dist/commands/test.d.ts +2 -1
- package/dist/commands/test.d.ts.map +1 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +25 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +461 -374
- package/dist/index.mjs.map +1 -1
- package/dist/shared/basecmd.d.ts +5 -4
- package/dist/shared/basecmd.d.ts.map +1 -1
- package/package.json +5 -3
- package/src/index.ts +20 -1
- package/dist/commands/index.d.ts +0 -9
- package/dist/commands/index.d.ts.map +0 -1
- package/src/commands/index.ts +0 -10
package/dist/commands/build.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Command } from '@oclif/core';
|
|
2
|
+
import { BooleanFlag, OptionFlag, CustomOptions } from '@oclif/core/interfaces';
|
|
2
3
|
export default class Build extends Command {
|
|
3
4
|
static description: string;
|
|
4
5
|
static examples: string[];
|
|
5
6
|
static flags: {
|
|
6
|
-
"generate-tags":
|
|
7
|
-
"tags-file":
|
|
8
|
-
"tags-additional-args":
|
|
9
|
-
"log-level":
|
|
7
|
+
"generate-tags": BooleanFlag<boolean>;
|
|
8
|
+
"tags-file": OptionFlag<string, CustomOptions>;
|
|
9
|
+
"tags-additional-args": OptionFlag<string[], CustomOptions>;
|
|
10
|
+
"log-level": OptionFlag<string, CustomOptions>;
|
|
10
11
|
};
|
|
11
12
|
run(): Promise<void>;
|
|
12
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/commands/build.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAQtC,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,OAAO;IACxC,OAAgB,WAAW,SAA6D;IAExF,OAAgB,QAAQ,WAA2C;IAEnE,OAAgB,KAAK;;;;;MAGnB;IAEW,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAiDlC"}
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/commands/build.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAQtC,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,OAAO;IACxC,OAAgB,WAAW,SAA6D;IAExF,OAAgB,QAAQ,WAA2C;IAEnE,OAAgB,KAAK;;;;;MAGnB;IAEW,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAiDlC"}
|
package/dist/commands/check.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Command } from '@oclif/core';
|
|
2
|
+
import { OptionFlag, CustomOptions } from '@oclif/core/interfaces';
|
|
2
3
|
export default class Check extends Command {
|
|
3
4
|
static description: string;
|
|
4
5
|
static strict: boolean;
|
|
5
6
|
static flags: {
|
|
6
|
-
"log-level":
|
|
7
|
+
"log-level": OptionFlag<string, CustomOptions>;
|
|
7
8
|
};
|
|
8
9
|
static examples: string[];
|
|
9
10
|
run(): Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"check.d.ts","sourceRoot":"","sources":["../../src/commands/check.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAOtC,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,OAAO;IACxC,OAAgB,WAAW,SAAmD;IAM9E,MAAM,CAAC,MAAM,UAAS;IAEtB,OAAgB,KAAK;;MAAsB;IAE3C,OAAgB,QAAQ,WAA2C;IAEtD,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAwBlC"}
|
|
1
|
+
{"version":3,"file":"check.d.ts","sourceRoot":"","sources":["../../src/commands/check.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAOtC,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,OAAO;IACxC,OAAgB,WAAW,SAAmD;IAM9E,MAAM,CAAC,MAAM,UAAS;IAEtB,OAAgB,KAAK;;MAAsB;IAE3C,OAAgB,QAAQ,WAA2C;IAEtD,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAwBlC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Command } from '@oclif/core';
|
|
2
|
+
import { BooleanFlag } from '@oclif/core/interfaces';
|
|
2
3
|
export default class DumpLibs extends Command {
|
|
3
4
|
static description: string;
|
|
4
5
|
static examples: string[];
|
|
5
6
|
static flags: {
|
|
6
|
-
deps:
|
|
7
|
+
deps: BooleanFlag<boolean>;
|
|
7
8
|
};
|
|
8
9
|
run(): Promise<void>;
|
|
9
10
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"libs.d.ts","sourceRoot":"","sources":["../../../src/commands/dump/libs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAS,MAAM,aAAa,CAAA;AAK5C,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,OAAO;IAC3C,OAAgB,WAAW,SAA4E;IAEvG,OAAgB,QAAQ,WAEvB;IAED,OAAgB,KAAK;;MAEpB;IAEY,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAMlC"}
|
|
1
|
+
{"version":3,"file":"libs.d.ts","sourceRoot":"","sources":["../../../src/commands/dump/libs.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,EAAS,MAAM,aAAa,CAAA;AAK5C,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,OAAO;IAC3C,OAAgB,WAAW,SAA4E;IAEvG,OAAgB,QAAQ,WAEvB;IAED,OAAgB,KAAK;;MAEpB;IAEY,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAMlC"}
|
package/dist/commands/test.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Command } from '@oclif/core';
|
|
2
|
+
import { OptionFlag, CustomOptions } from '@oclif/core/interfaces';
|
|
2
3
|
export default class Test extends Command {
|
|
3
4
|
static description: string;
|
|
4
5
|
static strict: boolean;
|
|
5
6
|
static flags: {
|
|
6
|
-
"log-level":
|
|
7
|
+
"log-level": OptionFlag<string, CustomOptions>;
|
|
7
8
|
};
|
|
8
9
|
static examples: string[];
|
|
9
10
|
run(): Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/commands/test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAOtC,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,OAAO;IACvC,OAAgB,WAAW,SAAwC;IAEnE,MAAM,CAAC,MAAM,UAAS;IAEtB,OAAgB,KAAK;;MAAsB;IAE3C,OAAgB,QAAQ,WAA2C;IAEtD,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAwBlC"}
|
|
1
|
+
{"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/commands/test.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAOtC,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,OAAO;IACvC,OAAgB,WAAW,SAAwC;IAEnE,MAAM,CAAC,MAAM,UAAS;IAEtB,OAAgB,KAAK;;MAAsB;IAE3C,OAAgB,QAAQ,WAA2C;IAEtD,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAwBlC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,19 @@
|
|
|
1
|
-
|
|
1
|
+
import { default as Cmd0 } from './commands/build';
|
|
2
|
+
import { default as Cmd1 } from './commands/check';
|
|
3
|
+
import { default as Cmd2 } from './commands/test';
|
|
4
|
+
import { default as Cmd3 } from './commands/dump/all';
|
|
5
|
+
import { default as Cmd4 } from './commands/dump/libs';
|
|
6
|
+
import { default as Cmd5 } from './commands/dump/software';
|
|
7
|
+
import { default as Cmd6 } from './commands/dump/templates';
|
|
8
|
+
import { default as Cmd7 } from './commands/dump/tests';
|
|
9
|
+
export declare const COMMANDS: {
|
|
10
|
+
build: typeof Cmd0;
|
|
11
|
+
check: typeof Cmd1;
|
|
12
|
+
test: typeof Cmd2;
|
|
13
|
+
'dump:all': typeof Cmd3;
|
|
14
|
+
'dump:libs': typeof Cmd4;
|
|
15
|
+
'dump:software': typeof Cmd5;
|
|
16
|
+
'dump:templates': typeof Cmd6;
|
|
17
|
+
'dump:tests': typeof Cmd7;
|
|
18
|
+
};
|
|
2
19
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,kBAAkB,CAAC;AACpC,OAAO,IAAI,MAAM,kBAAkB,CAAC;AACpC,OAAO,IAAI,MAAM,iBAAiB,CAAC;AACnC,OAAO,IAAI,MAAM,qBAAqB,CAAC;AACvC,OAAO,IAAI,MAAM,sBAAsB,CAAC;AACxC,OAAO,IAAI,MAAM,0BAA0B,CAAC;AAC5C,OAAO,IAAI,MAAM,2BAA2B,CAAC;AAC7C,OAAO,IAAI,MAAM,uBAAuB,CAAC;AAGzC,eAAO,MAAM,QAAQ;;;;;;;;;CASpB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var ke=Object.defineProperty;var Te=(t,e,r)=>e in t?ke(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r;var c=(t,e,r)=>Te(t,typeof e!="symbol"?e+"":e,r);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const fe=require("node:child_process"),h=require("@oclif/core"),De=require("node:path"),pe=require("node:fs"),re=require("node:zlib"),Fe=require("canonicalize"),j=require("winston"),xe=require("node:fs/promises"),ue=require("@milaboratories/tengo-tester"),O=require("node:process");function H(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const r in t)if(r!=="default"){const o=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,o.get?o:{enumerable:!0,get:()=>t[r]})}}return e.default=t,Object.freeze(e)}const d=H(De),u=H(pe),x=H(xe);function A(t){throw new Error("Unexpected object: "+t)}function Ae(){let t=process.cwd();for(;t;){const e=d.join(t,"node_modules");if(u.existsSync(e))return e;const r=d.resolve(t,"..");if(r===t)break;t=r}throw new Error("Unable to find node_modules directory.")}function N(t){try{const e=u.statSync(t);return e.isDirectory()?"dir":e.isFile()?"file":e.isSymbolicLink()?"link":"unknown"}catch(e){if(e.code=="ENOENT")return"absent";throw e}}function se(t){return`${t.type}||${t.pkg}||${t.id}`}function m(t){return`${t.type}:${t.pkg}:${t.id}:${t.version}`}function g(t){return`${t.type}:${t.pkg}:${t.id}`}function oe(t,e){return t.type==e.type&&t.pkg==e.pkg&&t.id==e.id}function b(t){return`${t.pkg}:${t.id}`}function R(t){return{name:b(t),version:t.version}}function Oe(t){const e=t.name.match(/^(?<pkg>[^:]*):(?<id>[^:]*)$/);if(!e)throw new Error(`malformed artifact name: ${t.name}`);return{pkg:e.groups.pkg,id:e.groups.id,version:t.version}}function ne(t){return`${t.pkg}:${t.id}:${t.version}`}const Me=new TextDecoder,je=new TextEncoder;class me{constructor(e,r,o){c(this,"data");c(this,"content");this.compileMode=e,this.fullName=r;let{data:n,content:s}=o;if(n===void 0&&s===void 0)throw new Error("Neither data nor content is provided for template constructor");if(n!==void 0&&s!==void 0)throw new Error("Both data and content are provided for template constructor");if(n===void 0&&(n=JSON.parse(Me.decode(re.gunzipSync(s))),n.type!=="pl.tengo-template.v2"))throw new Error("malformed template");s===void 0&&(s=re.gzipSync(je.encode(Fe(n))));const i=Oe(n);if(i.pkg!==r.pkg||i.id!==r.id||i.version!==r.version)throw new Error(`Compiled template name don't match it's package and file names: ${ne(i)} != ${ne(r)}`);this.data=n,this.content=s}toJSON(){return{compileMode:this.compileMode,fullName:this.fullName,data:this.data}}}class C{constructor(e){c(this,"map",new Map);this.nameExtractor=e}add(e,r=!0){const o=se(this.nameExtractor(e)),n=this.map.get(o);return n&&!r||this.map.set(o,e),n}get(e){return this.map.get(se(e))}get array(){const e=[];return this.map.forEach(r=>e.push(r)),e}forEach(e){this.map.forEach(r=>e(r,this.nameExtractor(r)))}}function Re(){return new C(t=>t)}class L{constructor(e){c(this,"dev");c(this,"dist");this.nameExtractor=e,this.dev=new C(e),this.dist=new C(e)}add(e,r,o=!0){switch(e){case"dist":return this.dist.add(r,o);default:A(e)}}get(e,r){switch(e){case"dist":return this.dist.get(r);default:A(e)}}array(e){const r=[];return this.forEach(e,o=>r.push(o)),r}forEach(e,r){this.dist.forEach((o,n)=>r(this.get(e,n)??o,n))}}class Le{constructor(e){c(this,"libs",new L(e=>e.fullName));c(this,"software",new L(e=>e.fullName));c(this,"templates",new L(e=>e.fullName));this.compileMode=e}populateTemplateDataFromDependencies(e,r,o,n){for(const s of o)switch(s.type){case"library":const i=this.getLibOrError(s),a=n.indexOf(b(s));if(a>=0){let p=`library import recursion detected: ${n.slice(a).join(" -> ")} -> ${b(s)}`;throw new Error(p)}r.libs[b(s)]={...R(i.fullName),src:i.src},this.populateTemplateDataFromDependencies(e,r,i.dependencies,[...n,b(s)]);break;case"software":const l=this.getSoftwareOrError(s);r.software[b(s)]={...R(l.fullName),src:l.src};break;case"template":if(oe(e,s))continue;const f=this.getTemplateOrError(s);r.templates[b(s)]=f.data;break;case"test":throw new Error(`dependencies tree error: tests should never be part of template: ${g(s)} is dependency of ${b(e)}`);default:A(s.type)}}compileAndAddTemplate(e){if(e.fullName.type!=="template")throw new Error("unexpected source type");const r={type:"pl.tengo-template.v2",...R(e.fullName),templates:{},libs:{},software:{},src:e.src};this.populateTemplateDataFromDependencies(e.fullName,r,e.dependencies,[]);const o=new me(e.compileMode,e.fullName,{data:r});return this.addTemplate(o),o}addLib(e){const r=this.libs.add(e.compileMode,e,!1);if(r)throw new Error(`compiler already contain such library: adding = ${m(e.fullName)}, contains = ${m(r.fullName)}`)}allLibs(){return this.libs.array(this.compileMode)}getLib(e){if(e.type!=="library")throw new Error(`illegal artifact type: got ${e.type} instead of 'library`);return this.libs.get(this.compileMode,e)}getLibOrError(e){const r=this.getLib(e);if(!r)throw new Error(`library not found: ${b(e)}`);return r}addSoftware(e){const r=this.software.add(e.compileMode,e,!1);if(r)throw new Error(`compiler already contain info for software: adding = ${m(e.fullName)}, contains = ${m(r.fullName)}`)}allSoftware(){return this.software.array(this.compileMode)}getSoftware(e){if(e.type!=="software")throw new Error(`illegal artifact type: got ${e.type} instead of 'software`);return this.software.get(this.compileMode,e)}getSoftwareOrError(e){const r=this.getSoftware(e);if(!r)throw new Error(`software info not found: ${b(e)}`);return r}addTemplate(e){const r=this.templates.add(e.compileMode,e,!1);if(r)throw new Error(`compiler already contain such template: adding = ${m(e.fullName)}, contains = ${m(r.fullName)}`)}allTemplates(){return this.templates.array(this.compileMode)}getTemplate(e){if(e.type!=="template")throw new Error(`illegal artifact type: got ${e.type} instead of 'template`);return this.templates.get(this.compileMode,e)}getTemplateOrError(e){const r=this.getTemplate(e);if(!r)throw new Error(`template not found: ${b(e)}`);return r}getArtefact(e){switch(e.type){case"template":return this.getTemplate(e);case"library":return this.getLib(e);case"software":return this.getSoftware(e);case"test":return;default:A(e.type)}}checkLibs(){this.libs.forEach(this.compileMode,e=>{for(const r of e.dependencies){if(r.type==="test")throw new Error(`test should never be dependency of production code: ${g(r)} test is dependency of ${m(e.fullName)}`);if(!this.getArtefact(r))throw new Error(`unresolved dependency ${g(r)} for ${m(e.fullName)}`)}})}compileAndAdd(e){const r={templates:[],libs:[],software:[]};let o=[];for(const n of e)n.fullName.type==="library"?(this.addLib(n),r.libs.push(n)):n.fullName.type==="software"?(this.addSoftware(n),r.software.push(n)):o.push(n);for(;o.length>0;){const n=[];for(const s of o){const i=s.dependencies.filter(a=>!this.getArtefact(a)&&!(s.fullName.type==="template"&&oe(s.fullName,a)));if(i.length>0){let a=`Unsatisfied dependencies in ${m(s.fullName)}:
|
|
2
2
|
`;for(const l of i)a+=` - ${g(l)}
|
|
3
|
-
`;n.push({src:
|
|
3
|
+
`;n.push({src:s,err:Error(a)});continue}switch(s.fullName.type){case"library":this.addLib(s),r.libs.push(s);break;case"software":this.addSoftware(s),r.software.push(s);break;case"template":try{const a=this.compileAndAddTemplate(s);r.templates.push(a)}catch(a){let l=`Unsatisfied dependencies in ${m(s.fullName)}:
|
|
4
4
|
`;l+=` - ${a.message}
|
|
5
|
-
`,n.push({src:
|
|
6
|
-
${i.err.message}`;throw new Error(
|
|
7
|
-
`),
|
|
8
|
-
${l}`)}}return{normalized:
|
|
9
|
-
`),deps:
|
|
10
|
-
`;
|
|
11
|
-
`,
|
|
12
|
-
`,
|
|
5
|
+
`,n.push({src:s,err:Error(l)})}break;case"test":break;default:A(s.fullName.type)}}if(o.length===n.length){let s="";for(const i of n)s+=`
|
|
6
|
+
${i.err.message}`;throw new Error(s)}o=n.map(({src:s})=>s)}return r}}const ie="[_a-zA-Z][_a-zA-Z0-9]*",M=(t,e)=>new RegExp(`\\b${t}\\.(?<fnCall>(?<fnName>`+e+')\\s*\\(\\s*"(?<templateName>[^"]+)"\\s*\\))'),Ce=t=>M(t,"getTemplateId"),Ie=t=>M(t,"getSoftwareInfo"),ae=t=>M(t,"importTemplate"),ce=t=>M(t,"importSoftware"),Ge=/^\s*(\/\/)|(\/\*.*\*\/)/,ze=/^\s*\/\*/,Je=/\*\//,ge=/\s*:=\s*import\s*\(\s*"(?<moduleName>[^"]+)"\s*\)/,Pe=new RegExp(`\\b(?<importName>${ie}(\\.${ie})*)${ge.source}`),qe=/(?<pkgName>[^"]+)?:(?<depID>[^"]+)/;class he{constructor(e,r,o,n,s){this.compileMode=e,this.fullName=r,this.src=o,this.srcName=n,this.dependencies=s}}function we(t,e,r,o){const n=pe.readFileSync(e).toString(),{deps:s,normalized:i}=We(n,r,o);return new he(t,r,i,e,s.array)}function We(t,e,r){const o=Re(),n=t.split(`
|
|
7
|
+
`),s=[];let i={isInCommentBlock:!1,tplDepREs:new Map},a=0;for(const l of n){a++;try{const f=_e(l,i,e.pkg,r);s.push(f.line),i=f.context,f.artifact&&o.add(f.artifact)}catch(f){throw new Error(`[line ${a}]: ${f.message}
|
|
8
|
+
${l}`)}}return{normalized:s.join(`
|
|
9
|
+
`),deps:o}}function _e(t,e,r,o){if(e.isInCommentBlock)return Je.exec(t)&&(e.isInCommentBlock=!1),{line:t,context:e,artifact:void 0};if(Ge.exec(t))return{line:t,context:e,artifact:void 0};if(ze.exec(t))return e.isInCommentBlock=!0,{line:t,context:e,artifact:void 0};const n=ge.exec(t);if(n){const s=Ue(t);if(s.module==="plapi")return e.tplDepREs.has(s.module)||e.tplDepREs.set(s.module,[["template",Ce(s.alias)],["software",Ie(s.alias)]]),{line:t,context:e,artifact:void 0};(s.module==="@milaboratory/tengo-sdk:ll"||s.module==="@platforma-sdk/workflow-tengo:ll"||(r==="@milaboratory/tengo-sdk"||r==="@platforma-sdk/workflow-tengo")&&s.module===":ll")&&(e.tplDepREs.has(s.module)||e.tplDepREs.set(s.module,[["template",ae(s.alias)],["software",ce(s.alias)]])),(s.module==="@milaboratory/tengo-sdk:assets"||s.module==="@platforma-sdk/workflow-tengo:assets"||(r==="@milaboratory/tengo-sdk"||r==="@platforma-sdk/workflow-tengo")&&s.module===":assets")&&(e.tplDepREs.has(s.module)||e.tplDepREs.set(s.module,[["template",ae(s.alias)],["software",ce(s.alias)]]));const i=le(s.module,"library",r);return i?(t=t.replace(n[0],` := import("${i.pkg}:${i.id}")`),{line:t,context:e,artifact:i}):{line:t,context:e,artifact:void 0}}if(e.tplDepREs.size>0)for(const[s,i]of e.tplDepREs)for(const[a,l]of i){const f=l.exec(t);if(!f||!f.groups)continue;const{fnCall:p,templateName:v,fnName:w}=f.groups;if(!p||!v||!w)throw Error("failed to parse template import statement");const y=le(v,a,r);if(!y)throw Error(`failed to parse artifact name in ${w} import statement`);return t=t.replace(p,`${w}("${y.pkg}:${y.id}")`),{line:t,context:e,artifact:y}}return{line:t,context:e,artifact:void 0}}function Ue(t){const e=Pe.exec(t);if(!e||!e.groups)throw Error("failed to parse 'import' statement");const{importName:r,moduleName:o}=e.groups;if(!r||!o)throw Error("failed to parse 'import' statement");return{module:o,alias:r}}function le(t,e,r){const o=qe.exec(t);if(!o)return;if(!o.groups)throw Error("failed to parse dependency name inside 'import' statement. The dependency name should have format '<package>:<templateName>'");const{pkgName:n,depID:s}=o.groups;if(!s)throw Error("failed to parse dependency name inside 'import' statement. The dependency name should have format '<package>:<templateName>'");return{type:e,pkg:n??r,id:s}}const I=".plj.gz",G=".lib.tengo",z=".sw.json",de=".test.tengo",J=".tpl.tengo",P=".lib.tengo",q=".sw.json",Be=[P,J,q];function $(t="debug"){return j.createLogger({level:t,format:j.format.printf(({level:e,message:r})=>`${e.padStart(6," ")}: ${r}`),transports:[new j.transports.Console({stderrLevels:["error","warn","info","debug"],handleExceptions:!0})]})}function k(){return JSON.parse(u.readFileSync("package.json").toString())}function ye(t,e){return d.resolve(e,t,"tengo","lib")}function be(t,e){return d.resolve(e,t,"tengo","tpl")}function ve(t,e){return d.resolve(e,t,"tengo","software")}function Ne(t,e,r,o,n=!1){const s=d.resolve(o,"package.json");if(N(s)!=="file"){for(const y of u.readdirSync(o)){const Se=N(d.join(o,y))==="link",te=d.resolve(o,y);N(te)==="dir"&&Ne(t,e,r,te,Se)}return}const i=ye("dist",o),a=be("dist",o),l=ve("dist",o),f=N(i)==="dir",p=N(a)==="dir",v=N(l)==="dir";if(!f&&!p&&!v)return;const w=JSON.parse(u.readFileSync(s).toString());if(w.name!==r.name){if(N(d.resolve(o,"node_modules"))==="dir"&&n)throw new Error(`nested node_modules is a sign of library dependencies version incompatibility in ${o}`);f&&Ve(t,w,"dist",i,e),p&&Ze(t,w,"dist",a,e),v&&Ke(t,w,"dist",l,e)}}function Ve(t,e,r,o,n){for(const s of u.readdirSync(o)){const i=d.resolve(o,s);if(!s.endsWith(G))throw new Error(`unexpected file in 'lib' folder: ${i}`);const a={type:"library",pkg:e.name,id:s.slice(0,s.length-G.length),version:e.version},l=we(r,i,a,!0);if(n.addLib(l),t.debug(`Adding dependency ${m(a)} from ${i}`),l.dependencies.length>0){t.debug("Dependencies:");for(const f of l.dependencies)t.debug(` - ${g(f)}`)}}}function Ze(t,e,r,o,n){for(const s of u.readdirSync(o)){const i=d.resolve(o,s);if(!s.endsWith(I))throw new Error(`unexpected file in 'tpl' folder: ${i}`);const a={type:"template",pkg:e.name,id:s.slice(0,s.length-I.length),version:e.version},l=new me(r,a,{content:u.readFileSync(i)});n.addTemplate(l),t.debug(`Adding dependency ${m(a)} from ${i}`)}}function Ke(t,e,r,o,n){for(const s of u.readdirSync(o)){const i=d.resolve(o,s);if(!s.endsWith(z))throw new Error(`unexpected file in 'software' folder: ${i}`);const a={type:"software",pkg:e.name,id:s.slice(0,s.length-z.length),version:e.version},l=new he(r,a,u.readFileSync(i).toString(),i,[]);n.addSoftware(l),t.debug(`Adding dependency ${m(a)} from ${i}`)}}function T(t,e,r,o,n){const s=[];for(const i of u.readdirSync(d.join(o,n))){const a=d.join(n,i),l=d.join(o,a);if(N(l)==="dir"){const y=T(t,e,r,o,a);s.push(...y);continue}const f=i==="index.lib.tengo"?`${d.basename(n)}.lib.tengo`:a,p=Xe(e,f.replaceAll(d.sep,"."));if(!p)continue;const v=d.resolve(o,a);t.debug(`Parsing ${m(p)} from ${v}`);const w=we(r,v,p,!0);if(w.dependencies.length>0){t.debug("Detected dependencies:");for(const y of w.dependencies)t.debug(` - ${g(y)}`)}s.push(w)}return s}function Q(t,e,r){const o=new Le(r);return Ne(t,o,e,Ae()),o}function Xe(t,e){const r={pkg:t.name,version:t.version};return e.endsWith(P)?{...r,id:e.substring(0,e.length-P.length),type:"library"}:e.endsWith(J)?{...r,id:e.substring(0,e.length-J.length),type:"template"}:e.endsWith(q)?{...r,id:e.substring(0,e.length-q.length),type:"software"}:e.endsWith(de)?{...r,id:e.substring(0,e.length-de.length),type:"test"}:null}function He(t,e){const r=k(),o=Q(t,r,e),n=T(t,r,e,"src","");if(n.length===0){const i=[];for(const a of Be)i.push(`*${a}`);t.error(`Nothing to compile. Looked for ${i.join(", ")}`),process.exit(1)}t.info(`Compiling '${e}'...`);const s=o.compileAndAdd(n);return t.debug("Done."),s}function Qe(t,e,r){if(e.libs.length>0){const o=ye(r,".");u.mkdirSync(o,{recursive:!0});for(const n of e.libs){const s=d.resolve(o,n.fullName.id+G);t.info(` - writing ${s}`),u.writeFileSync(s,n.src)}}if(e.templates.length>0){const o=be(r,".");u.mkdirSync(o,{recursive:!0});for(const n of e.templates){const s=d.resolve(o,n.fullName.id+I);t.info(` - writing ${s}`),u.writeFileSync(s,n.content)}}if(e.software.length>0){const o=ve(r,".");u.mkdirSync(o,{recursive:!0});for(const n of e.software){const s=d.resolve(o,n.fullName.id+z);t.info(` - writing ${s}`),u.writeFileSync(s,n.src)}}}const Y={"log-level":h.Flags.string({description:"logging level",default:"info",options:["error","warn","info","debug"]})},Ye={"generate-tags":h.Flags.boolean({description:"generate tags, default false",default:!1}),"tags-file":h.Flags.file({description:'where to put ".tags" file, it should be a root of VS Code project',default:"../../.tags"}),"tags-additional-args":h.Flags.string({description:"additional flags for universal-ctags command: e.g. -e for emacs",default:[],multiple:!0,delimiter:","})},D=class D extends h.Command{async run(){const{flags:e}=await this.parse(D),r=$(e["log-level"]),o=k(),n=He(r,"dist");Qe(r,n,"dist"),r.info("");let s=`declare type TemplateFromFile = { readonly type: "from-file"; readonly path: string; };
|
|
10
|
+
`;s+=`declare type TplName = ${n.templates.map(p=>'"'+p.fullName.id+'"').join(" | ")};
|
|
11
|
+
`,s+=`declare const Templates: Record<TplName, TemplateFromFile>;
|
|
12
|
+
`,s+=`export { Templates };
|
|
13
13
|
`;let i=`module.exports = { Templates: {
|
|
14
14
|
`,a=`import { resolve } from 'node:path';
|
|
15
15
|
export const Templates = {
|
|
@@ -19,20 +19,25 @@ export const Templates = {
|
|
|
19
19
|
}};
|
|
20
20
|
`,a+=`
|
|
21
21
|
};
|
|
22
|
-
`,await
|
|
23
|
-
Found ${
|
|
22
|
+
`,await x.writeFile("dist/index.d.ts",s),o.type==="module"?(await x.writeFile("dist/index.cjs",i),await x.writeFile("dist/index.js",a)):(await x.writeFile("dist/index.js",i),await x.writeFile("dist/index.mjs",a)),et(e),e["generate-tags"]&&tt(r,e),r.info("Template Pack build done.")}};c(D,"description","build tengo sources into single distributable pack file"),c(D,"examples",["<%= config.bin %> <%= command.id %>"]),c(D,"flags",{...Y,...Ye});let W=D;function et(t){process.env.GENERATE_TAGS!=null&&(t["generate-tags"]=process.env.GENERATE_TAGS=="true"),process.env.TAGS_FILE!=null&&(t["tags-file"]=process.env.TAGS_FILE),process.env.TAGS_ADDITIONAL_ARGS!=null&&(t["tags-additional-args"]=process.env.TAGS_ADDITIONAL_ARGS.split(","))}function tt(t,e){var a;const r=d.resolve(e["tags-file"]),o=d.dirname(r),n=e["tags-additional-args"],s=rt(o);t.info(`Generating tags for tengo autocompletion from "${o}" in "${r}", additional arguments: "${n}".
|
|
23
|
+
Found ${s.length} tengo files...`);const i=fe.spawnSync("ctags",["-f",r,...n,"--langdef=tengo","--map-tengo=+.tengo","--kinddef-tengo=f,function,function","--regex-tengo=/^\\s*(.*)(:| :=| =) ?func.*/\\1/f/","--kinddef-tengo=c,constant,constant",'--regex-tengo=/^\\s*(.*) := ("|\\{).*/\\1/c/',"-R",...s],{env:process.env,stdio:"inherit",cwd:o});if((a=i.error)!=null&&a.message.includes("ENOENT")){console.log(`
|
|
24
24
|
pl-tengo can create tags for tengo autocompletion,
|
|
25
25
|
but the program should be installed
|
|
26
26
|
with "brew install universal-ctags" on OSX
|
|
27
27
|
or "sudo apt install universal-ctags" on Ubuntu.
|
|
28
28
|
|
|
29
29
|
For vscode, you should also install ctags extension:
|
|
30
|
-
https://marketplace.visualstudio.com/items?itemName=jaydenlin.ctags-support`);return}
|
|
31
|
-
`);for(const
|
|
32
|
-
`));for(const
|
|
33
|
-
`);for(const
|
|
34
|
-
`));for(const
|
|
35
|
-
`);for(const
|
|
36
|
-
`));for(const
|
|
37
|
-
`))}function
|
|
30
|
+
https://marketplace.visualstudio.com/items?itemName=jaydenlin.ctags-support`);return}st(i,"failed to generate ctags"),t.info("Generation of tags is done.")}function rt(t){const e=u.readdirSync(t,{withFileTypes:!0,recursive:!0}),r=[];return e.forEach(o=>{if(!o.isDirectory()&&o.name.endsWith(".tengo")){const n=d.join(o.parentPath,o.name).replace(t,".");r.push(n)}}),r}function st(t,e){t.error&&console.log(t.error);const r=e;t.status!==0&&console.log(`WARN: ${r} the build will continue as-is`)}function ee(t,e){const r=k(),o=T(t,r,"dist","src",""),n=Q(t,r,"dist");for(const s of n.allLibs())t.debug(`Dumping to pl-tester: ${g(s.fullName)}`),e.write(JSON.stringify(s)+`
|
|
31
|
+
`);for(const s of o)s.fullName.type==="library"&&(t.debug(`Dumping to pl-tester: ${g(s.fullName)}`),e.write(JSON.stringify(s)+`
|
|
32
|
+
`));for(const s of n.allTemplates())t.debug(`Dumping to pl-tester: ${g(s.fullName)}`),e.write(JSON.stringify(s)+`
|
|
33
|
+
`);for(const s of o)s.fullName.type==="template"&&(t.debug(`Dumping to pl-tester: ${g(s.fullName)} ${s.srcName}`),e.write(JSON.stringify(s)+`
|
|
34
|
+
`));for(const s of n.allSoftware())t.debug(`Dumping to pl-tester: ${g(s.fullName)}`),e.write(JSON.stringify(s)+`
|
|
35
|
+
`);for(const s of o)s.fullName.type==="software"&&(t.debug(`Dumping to pl-tester: ${g(s.fullName)}`),e.write(JSON.stringify(s)+`
|
|
36
|
+
`));for(const s of o)s.fullName.type==="test"&&(t.debug(`Dumping to pl-tester: ${g(s.fullName)} ${s.srcName}`),e.write(JSON.stringify(s)+`
|
|
37
|
+
`))}function ot(t,e,r){const o=k(),n=T(t,o,"dist","src","");if(!e){for(const i of n)i.fullName.type==="library"&&r.write(JSON.stringify(i)+`
|
|
38
|
+
`);return}const s=Q(t,o,"dist");for(const i of n)i.fullName.type==="library"&&s.addLib(i);for(const i of s.allLibs())r.write(JSON.stringify(i)+`
|
|
39
|
+
`)}function nt(t,e){const r=k(),o=T(t,r,"dist","src","");for(const n of o)n.fullName.type==="template"&&e.write(JSON.stringify(n)+`
|
|
40
|
+
`)}function it(t,e){const r=k(),o=T(t,r,"dist","src","");for(const n of o)n.fullName.type==="software"&&e.write(JSON.stringify(n)+`
|
|
41
|
+
`)}function at(t,e){const r=k(),o=T(t,r,"dist","src","");for(const n of o)n.fullName.type==="test"&&e.write(JSON.stringify(n)+`
|
|
42
|
+
`)}function $e(t,...e){const r=fe.spawn(t,e,{stdio:["pipe","inherit","inherit"]});return r.stdin.on("error",o=>{o.code}),r}function Ee(t){return new Promise((e,r)=>{t.on("close",o=>{e(o)}),t.on("error",o=>{r(o)})})}const E=class E extends h.Command{async run(){const{flags:e,argv:r}=await this.parse(E),o=$(e["log-level"]),n=r.length==0?["./src"]:r,s=$e(ue.TengoTesterBinaryPath,"check","--log-level",e["log-level"],"--artifacts","-",...n);try{ee(o,s.stdin)}catch(i){o.error(i)}finally{s.stdin.end();const i=await Ee(s);process.exit(i)}}};c(E,"description","check tengo sources for language processor an"),c(E,"strict",!1),c(E,"flags",{...Y}),c(E,"examples",["<%= config.bin %> <%= command.id %>"]);let _=E;const S=class S extends h.Command{async run(){const{flags:e}=await this.parse(S),r=$(e["log-level"]),o=this.argv.length==0?["./src"]:this.argv,n=$e(ue.TengoTesterBinaryPath,"run","--log-level",e["log-level"],"--artifacts","-",...o);try{ee(r,n.stdin)}catch(s){r.error(s)}finally{n.stdin.end();const s=await Ee(n);process.exit(s)}}};c(S,"description","run tengo unit tests (.test.tengo)"),c(S,"strict",!1),c(S,"flags",{...Y}),c(S,"examples",["<%= config.bin %> <%= command.id %>"]);let U=S;class B extends h.Command{async run(){const e=$();ee(e,O.stdout)}}c(B,"description","parse sources in current package and dump all found artifacts to stdout"),c(B,"examples",["<%= config.bin %> <%= command.id %>"]);const F=class F extends h.Command{async run(){const{flags:e}=await this.parse(F),r=$();ot(r,e.deps,O.stdout)}};c(F,"description","parse sources in current package and dump all found templates to stdout"),c(F,"examples",["<%= config.bin %> <%= command.id %>"]),c(F,"flags",{deps:h.Flags.boolean({name:"deps",description:"add also all libraries found in node_modules"})});let V=F;class Z extends h.Command{async run(){const e=$();it(e,O.stdout)}}c(Z,"description","parse sources in current package and dump all found tests to stdout"),c(Z,"examples",["<%= config.bin %> <%= command.id %>"]);class K extends h.Command{async run(){const e=$();nt(e,O.stdout)}}c(K,"description","parse sources in current package and dump all found templates to stdout"),c(K,"examples",["<%= config.bin %> <%= command.id %>"]);class X extends h.Command{async run(){const e=$();at(e,O.stdout)}}c(X,"description","parse sources in current package and dump all found tests to stdout"),c(X,"examples",["<%= config.bin %> <%= command.id %>"]);const ct={build:W,check:_,test:U,"dump:all":B,"dump:libs":V,"dump:software":Z,"dump:templates":K,"dump:tests":X};exports.COMMANDS=ct;
|
|
38
43
|
//# sourceMappingURL=index.js.map
|