@onivoro/onix 0.0.1 → 0.0.3

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/executors.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "executors": {
3
+ "echo": {
4
+ "implementation": "./src/executors/echo/executor",
5
+ "schema": "./src/executors/echo/schema.json",
6
+ "description": "echo executor"
7
+ }
8
+ }
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onivoro/onix",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "executors": "./executors.json",
5
5
  "dependencies": {
6
6
  "@nx/devkit": "17.0.2"
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Echo executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {},
8
+ "required": []
9
+ }
package/README.md DELETED
@@ -1,11 +0,0 @@
1
- # onix
2
-
3
- This library was generated with [Nx](https://nx.dev).
4
-
5
- ## Building
6
-
7
- Run `nx build onix` to build the library.
8
-
9
- ## Running unit tests
10
-
11
- Run `nx test onix` to execute the unit tests via [Jest](https://jestjs.io).