@platforma-open/milaboratories.rarefaction.workflow 1.1.4 → 1.1.5
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 +1 -1
- package/CHANGELOG.md +8 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/rarefaction-calculation.plj.gz +0 -0
- package/package.json +7 -9
- package/index.d.ts +0 -4
- package/index.js +0 -3
- package/tsconfig.json +0 -16
- package/vitest.config.mts +0 -9
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/rarefaction/rarefaction/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.rarefaction.workflow@1.1.
|
|
3
|
+
> @platforma-open/milaboratories.rarefaction.workflow@1.1.5 build /home/runner/work/rarefaction/rarefaction/workflow
|
|
4
4
|
> rm -rf dist && pl-tengo check && pl-tengo build
|
|
5
5
|
|
|
6
6
|
Processing "src/main.tpl.tengo"...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.rarefaction.workflow
|
|
2
2
|
|
|
3
|
+
## 1.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8e56508: Show running state for tables and graphs
|
|
8
|
+
- Updated dependencies [8e56508]
|
|
9
|
+
- @platforma-open/milaboratories.rarefaction.software@1.2.4
|
|
10
|
+
|
|
3
11
|
## 1.1.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.rarefaction.workflow",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Tengo-based template",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@platforma-sdk/workflow-tengo": "
|
|
8
|
-
"@platforma-open/milaboratories.rarefaction.software": "1.2.
|
|
7
|
+
"@platforma-sdk/workflow-tengo": "5.8.0",
|
|
8
|
+
"@platforma-open/milaboratories.rarefaction.software": "1.2.4"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@platforma-sdk/tengo-builder": "
|
|
12
|
-
"@platforma-sdk/test": "^1.45.15",
|
|
13
|
-
"vitest": "^2.1.8"
|
|
11
|
+
"@platforma-sdk/tengo-builder": "2.4.8"
|
|
14
12
|
},
|
|
15
13
|
"scripts": {
|
|
16
14
|
"build": "rm -rf dist && pl-tengo check && pl-tengo build",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
15
|
+
"format": "/usr/bin/env emacs --script ./format.el",
|
|
16
|
+
"do-pack": "rm -f *.tgz && pnpm pack && mv *.tgz package.tgz"
|
|
19
17
|
}
|
|
20
18
|
}
|
package/index.d.ts
DELETED
package/index.js
DELETED
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
|
-
}
|