@milaboratories/milaboratories.pool-explorer.model 1.0.114 → 1.0.116
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 +5 -0
- package/.turbo/turbo-type-check.log +2 -2
- package/CHANGELOG.md +12 -0
- package/dist/bundle.js +3 -3
- package/dist/bundle.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/model.json +1 -1
- package/eslint.config.mjs +7 -0
- package/package.json +9 -6
- package/src/index.ts +3 -3
- package/tsconfig.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @milaboratories/milaboratories.pool-explorer.model@1.0.
|
|
3
|
+
> @milaboratories/milaboratories.pool-explorer.model@1.0.116 build /home/runner/_work/platforma/platforma/etc/blocks/pool-explorer/model
|
|
4
4
|
> ts-builder build --target block-model && block-tools build-model
|
|
5
5
|
|
|
6
6
|
Building block-model project...
|
|
7
7
|
↳ rollup -c /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 [1m1.7s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
|
-
[32mcreated [1mdist[22m in [
|
|
13
|
+
[32mcreated [1mdist[22m in [1m2.6s[22m[39m
|
|
14
14
|
Build completed successfully
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
WARN Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
|
+
|
|
3
|
+
> @milaboratories/milaboratories.pool-explorer.model@1.0.116 lint /home/runner/_work/platforma/platforma/etc/blocks/pool-explorer/model
|
|
4
|
+
> eslint .
|
|
5
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @milaboratories/milaboratories.pool-explorer.model@1.0.
|
|
3
|
+
> @milaboratories/milaboratories.pool-explorer.model@1.0.116 type-check /home/runner/_work/platforma/platforma/etc/blocks/pool-explorer/model
|
|
4
4
|
> ts-builder types --target block-model
|
|
5
5
|
|
|
6
|
-
↳ tsc --noEmit --project ./tsconfig.json
|
|
6
|
+
↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @milaboratories/milaboratories.pool-explorer.model
|
|
2
2
|
|
|
3
|
+
## 1.0.116
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @platforma-sdk/model@1.48.2
|
|
8
|
+
|
|
9
|
+
## 1.0.115
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 557172d: Add eslint configuration files and lint scripts to published block model and UI packages
|
|
14
|
+
|
|
3
15
|
## 1.0.114
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/bundle.js
CHANGED
|
@@ -7358,7 +7358,7 @@
|
|
|
7358
7358
|
}
|
|
7359
7359
|
}
|
|
7360
7360
|
|
|
7361
|
-
var version = "1.
|
|
7361
|
+
var version = "1.48.2";
|
|
7362
7362
|
|
|
7363
7363
|
const PlatformaSDKVersion = version;
|
|
7364
7364
|
|
|
@@ -7610,10 +7610,10 @@
|
|
|
7610
7610
|
const platforma = BlockModel.create('Heavy')
|
|
7611
7611
|
.withArgs({ titleArg: 'The title' })
|
|
7612
7612
|
.output('allSpecs', (ctx) => ctx.resultPool.getSpecs())
|
|
7613
|
-
.sections((
|
|
7613
|
+
.sections((_ctx) => {
|
|
7614
7614
|
return [{ type: 'link', href: '/', label: 'Main' }];
|
|
7615
7615
|
})
|
|
7616
|
-
.title((
|
|
7616
|
+
.title((_ctx) => 'Pool explorer')
|
|
7617
7617
|
.done();
|
|
7618
7618
|
|
|
7619
7619
|
exports.platforma = platforma;
|