@aloma.io/integration-sdk 3.0.0 → 3.0.1-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/build/cli.d.mts +1 -0
- package/build/cli.d.ts +1 -0
- package/build/cli.js +2 -0
- package/build/cli.mjs +2 -0
- package/examples/hello-world/package.json +0 -1
- package/examples/hello-world/src/controller/index.mts +1 -2
- package/package.json +4 -1
- package/src/cli.js +1 -0
package/build/cli.d.mts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
package/build/cli.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
package/build/cli.js
ADDED
package/build/cli.mjs
ADDED
package/package.json
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aloma.io/integration-sdk",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.1-1",
|
4
4
|
"description": "",
|
5
5
|
"author": "aloma.io",
|
6
6
|
"license": "Apache-2.0",
|
7
7
|
"type": "module",
|
8
|
+
"bin": {
|
9
|
+
"create-react-app": "./build/cli.js"
|
10
|
+
},
|
8
11
|
"scripts": {
|
9
12
|
"dev": "./node_modules/typescript/bin/tsc --watch",
|
10
13
|
"build": "./node_modules/typescript/bin/tsc",
|
package/src/cli.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
console.log('hello world');
|