@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.
@@ -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.4 build /home/runner/work/rarefaction/rarefaction/workflow
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
package/package.json CHANGED
@@ -1,20 +1,18 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.rarefaction.workflow",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "type": "module",
5
- "description": "Block Workflow",
5
+ "description": "Tengo-based template",
6
6
  "dependencies": {
7
- "@platforma-sdk/workflow-tengo": "^5.5.12",
8
- "@platforma-open/milaboratories.rarefaction.software": "1.2.3"
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": "^2.3.3",
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
- "test": "vitest",
18
- "format": "/usr/bin/env emacs --script ./format.el"
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
@@ -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
- }
package/vitest.config.mts DELETED
@@ -1,9 +0,0 @@
1
- import { defineConfig } from 'vitest/config';
2
-
3
- export default defineConfig({
4
- test: {
5
- watch: false,
6
- maxConcurrency: 3,
7
- testTimeout: 5000
8
- }
9
- });