@platforma-open/milaboratories.mixcr-library-builder.workflow 2.0.2 → 2.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.
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/work/mixcr-library-builder/mixcr-library-builder/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-library-builder.workflow@2.0.2 build /home/runner/work/mixcr-library-builder/mixcr-library-builder/workflow
3
+ > @platforma-open/milaboratories.mixcr-library-builder.workflow@2.1.0 build /home/runner/work/mixcr-library-builder/mixcr-library-builder/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/fasta-generation.tpl.tengo"...
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @platforma-open/milaboratories.mixcr-library-builder.workflow
2
2
 
3
+ ## 2.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ece19be: Support custom block title and running status
8
+
9
+ ## 2.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 03cfc91: technical release
14
+ - 7b58a02: technical release
15
+ - fff533b: technical release
16
+ - f2284a8: technical release
17
+ - 423ce2f: technical release
18
+ - Updated dependencies [03cfc91]
19
+ - Updated dependencies [7b58a02]
20
+ - Updated dependencies [fff533b]
21
+ - Updated dependencies [f2284a8]
22
+ - Updated dependencies [423ce2f]
23
+ - @platforma-open/milaboratories.mixcr-library-builder.software@2.0.3
24
+
3
25
  ## 2.0.2
4
26
 
5
27
  ### Patch Changes
Binary file
Binary file
package/package.json CHANGED
@@ -1,21 +1,20 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-library-builder.workflow",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "type": "module",
5
5
  "description": "Block Workflow",
6
6
  "dependencies": {
7
- "@platforma-sdk/workflow-tengo": "^5.1.4",
8
- "@platforma-open/milaboratories.software-mixcr": "4.7.0-139-develop",
9
- "@platforma-open/milaboratories.software-repseqio": "^2.5.0-13-master",
10
- "@platforma-open/milaboratories.mixcr-library-builder.software": "2.0.2"
7
+ "@platforma-sdk/workflow-tengo": "5.8.0",
8
+ "@platforma-open/milaboratories.software-mixcr": "4.7.0-235-develop",
9
+ "@platforma-open/milaboratories.software-repseqio": "^2.5.0-25-master",
10
+ "@platforma-open/milaboratories.mixcr-library-builder.software": "2.0.3"
11
11
  },
12
12
  "devDependencies": {
13
- "@platforma-sdk/tengo-builder": "^2.1.18",
14
- "@platforma-sdk/test": "^1.42.52",
15
- "vitest": "~2.1.8"
13
+ "@platforma-sdk/tengo-builder": "2.4.8"
16
14
  },
17
15
  "scripts": {
18
16
  "build": "rm -rf dist && pl-tengo check && pl-tengo build",
19
- "format": "/usr/bin/env emacs --script ./format.el"
17
+ "format": "/usr/bin/env emacs --script ./format.el",
18
+ "do-pack": "rm -f *.tgz && pnpm pack && mv *.tgz package.tgz"
20
19
  }
21
20
  }
@@ -45,6 +45,7 @@ wf.body(func(args) {
45
45
 
46
46
  for chain, chainConfig in chainConfigs {
47
47
  libraryBuilderCmdBuilder := exec.builder().
48
+ saveStdoutStream().
48
49
  software(mixcrSw).
49
50
  secret("MI_LICENSE", "MI_LICENSE").
50
51
  arg("buildLibrary").
package/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- declare type TemplateFromFile = { readonly type: "from-file"; readonly path: string; };
2
- declare type TplName = "main";
3
- declare const Templates: Record<TplName, TemplateFromFile>;
4
- export { Templates };
package/index.js DELETED
@@ -1,3 +0,0 @@
1
- module.exports = { Templates: {
2
- 'main': { type: 'from-file', path: require.resolve('./dist/tengo/tpl/main.plj.gz') }
3
- }}
package/tsconfig.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2022",
4
- "module": "commonjs",
5
- "moduleResolution": "node",
6
- "esModuleInterop": true,
7
- "strict": true,
8
- "outDir": "./dist",
9
- "rootDir": "./src",
10
- "sourceMap": true,
11
- "declaration": true
12
- },
13
- "types": [],
14
- "include": ["src/**/*"],
15
- "exclude": ["node_modules", "dist"]
16
- }