@innofeight/global-workflow 0.0.1
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/README.md +12 -0
- package/hello-world.mjs +1 -0
- package/package.json +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @innofeight/global-workflow
|
|
2
|
+
|
|
3
|
+
Public npm transport smoke package.
|
|
4
|
+
|
|
5
|
+
Version `0.0.1` intentionally exposes only a deterministic Hello World value.
|
|
6
|
+
It does not contain the shared workflow implementation.
|
|
7
|
+
|
|
8
|
+
```js
|
|
9
|
+
import { helloWorld } from '@innofeight/global-workflow/hello-world'
|
|
10
|
+
|
|
11
|
+
console.log(helloWorld)
|
|
12
|
+
```
|
package/hello-world.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const helloWorld = 'hello world'
|
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@innofeight/global-workflow",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Public npm transport smoke package.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"hello-world.mjs"
|
|
8
|
+
],
|
|
9
|
+
"exports": {
|
|
10
|
+
"./hello-world": "./hello-world.mjs"
|
|
11
|
+
},
|
|
12
|
+
"sideEffects": false,
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public",
|
|
15
|
+
"registry": "https://registry.npmjs.org/"
|
|
16
|
+
}
|
|
17
|
+
}
|