@platforma-open/milaboratories.repertoire-diversity-2.model 1.5.5 → 1.5.6
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/.turbo/turbo-build.log +3 -3
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/bundle.js +5 -3
- package/dist/bundle.js.map +1 -1
- package/dist/index.cjs +5 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +3 -3
- package/src/index.ts +9 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/repertoire-diversity/repertoire-diversity/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.repertoire-diversity-2.model@1.5.
|
|
3
|
+
> @platforma-open/milaboratories.repertoire-diversity-2.model@1.5.6 build /home/runner/work/repertoire-diversity/repertoire-diversity/model
|
|
4
4
|
> ts-builder build --target block-model && block-tools build-model
|
|
5
5
|
|
|
6
6
|
Building block-model project...
|
|
7
|
-
↳ rollup -c /home/runner/work/repertoire-diversity/repertoire-diversity/node_modules/.pnpm/@milaboratories+ts-builder@1.2.1_@microsoft+api-extractor@7.55.2_@types+node@24.5.2__@types+
|
|
7
|
+
↳ rollup -c /home/runner/work/repertoire-diversity/repertoire-diversity/node_modules/.pnpm/@milaboratories+ts-builder@1.2.1_@microsoft+api-extractor@7.55.2_@types+node@24.5.2__@types+n_uvjfcjgqc2lxux3uembbo6tnye/node_modules/@milaboratories/ts-builder/dist/configs/rollup.block-model.config.js
|
|
8
8
|
[36m
|
|
9
9
|
[1m./src/index.ts[22m → [1mdist, dist[22m...[39m
|
|
10
|
-
[32mcreated [1mdist, dist[22m in [
|
|
10
|
+
[32mcreated [1mdist, dist[22m in [1m2.6s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
13
|
[1m[33m(!) Circular dependency[39m[22m
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/repertoire-diversity/repertoire-diversity/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.repertoire-diversity-2.model@1.5.
|
|
3
|
+
> @platforma-open/milaboratories.repertoire-diversity-2.model@1.5.6 lint /home/runner/work/repertoire-diversity/repertoire-diversity/model
|
|
4
4
|
> eslint .
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/repertoire-diversity/repertoire-diversity/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.repertoire-diversity-2.model@1.5.
|
|
3
|
+
> @platforma-open/milaboratories.repertoire-diversity-2.model@1.5.6 type-check /home/runner/work/repertoire-diversity/repertoire-diversity/model
|
|
4
4
|
> ts-builder types --target block-model
|
|
5
5
|
|
|
6
6
|
↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
|
package/CHANGELOG.md
CHANGED
package/dist/bundle.js
CHANGED
|
@@ -8192,9 +8192,10 @@
|
|
|
8192
8192
|
const model = BlockModel.create()
|
|
8193
8193
|
.withArgs({
|
|
8194
8194
|
metrics: [],
|
|
8195
|
+
defaultBlockLabel: '',
|
|
8196
|
+
customBlockLabel: '',
|
|
8195
8197
|
})
|
|
8196
8198
|
.withUiState({
|
|
8197
|
-
blockTitle: 'Repertoire Diversity',
|
|
8198
8199
|
graphState: {
|
|
8199
8200
|
title: 'Repertoire Diversity',
|
|
8200
8201
|
template: 'bar',
|
|
@@ -8262,7 +8263,7 @@
|
|
|
8262
8263
|
'pl7.app/abundance/isPrimary': 'true',
|
|
8263
8264
|
},
|
|
8264
8265
|
},
|
|
8265
|
-
]))
|
|
8266
|
+
], { includeNativeLabel: true }))
|
|
8266
8267
|
.outputWithStatus('pt', (ctx) => {
|
|
8267
8268
|
const pCols = ctx.outputs?.resolve('pf')?.getPColumns();
|
|
8268
8269
|
if (pCols === undefined) {
|
|
@@ -8289,7 +8290,8 @@
|
|
|
8289
8290
|
}));
|
|
8290
8291
|
})
|
|
8291
8292
|
.output('isRunning', (ctx) => ctx.outputs?.getIsReadyOrError() === false)
|
|
8292
|
-
.title((
|
|
8293
|
+
.title(() => 'Repertoire Diversity')
|
|
8294
|
+
.subtitle((ctx) => ctx.args.customBlockLabel || ctx.args.defaultBlockLabel)
|
|
8293
8295
|
.sections((_) => [
|
|
8294
8296
|
{ type: 'link', href: '/', label: 'Main' },
|
|
8295
8297
|
{ type: 'link', href: '/diversityGraph', label: 'Diversity Graph' },
|