@onivoro/onix 0.0.4 → 3.3.7

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
+ "xxxx": {
4
+ "implementation": "./src/executors/executor",
5
+ "schema": "./src/executors/schema.json",
6
+ "description": "xxxx executor"
7
+ }
8
+ }
9
+ }
package/package.json CHANGED
@@ -1,38 +1,13 @@
1
1
  {
2
- "name": "@onivoro/onix",
3
- "version": "0.0.4",
4
- "executors": "./executors.json",
5
- "repository": {
6
- "url": "git+https://github.com/onivoro/onix.git"
7
- },
8
- "main": "dist/cjs/index.js",
9
- "types": "dist/types/index.d.ts",
10
- "files": [
11
- "dist/*"
12
- ],
13
- "scripts": {
14
- "onx": "onx",
15
- "build": "onx Build",
16
- "deploy": "onx Publish",
17
- "test": "onx Test",
18
- "update": "onx Update"
19
- },
20
- "exports": {
21
- ".": {
22
- "types": "./dist/types/index.d.ts",
23
- "require": "./dist/cjs/index.js",
24
- "import": "./dist/esm/index.js",
25
- "default": "./dist/esm/lib.js"
26
- }
27
- },
28
- "dependencies": {
29
- "@nx/devkit": "20.0.6"
30
- },
31
- "devDependencies": {
32
- "@onivoro/cli": "^22.0.8"
33
- },
34
- "engines": {
35
- "node": "22.10.0",
36
- "npm": "10.9.0"
37
- }
2
+ "name": "@onivoro/onix",
3
+ "version": "3.3.7",
4
+ "dependencies": {
5
+ "@nx/devkit": "20.0.6",
6
+ "tslib": "^2.3.0"
7
+ },
8
+ "type": "commonjs",
9
+ "main": "./src/index.js",
10
+ "typings": "./src/index.d.ts",
11
+ "executors": "./executors.json",
12
+ "types": "./src/index.d.ts"
38
13
  }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { XxxxExecutorSchema } from './schema';
3
+ declare const runExecutor: PromiseExecutor<XxxxExecutorSchema>;
4
+ export default runExecutor;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const runExecutor = (options) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
5
+ console.log('Executor ran for Xxxx', options);
6
+ return {
7
+ success: true,
8
+ };
9
+ });
10
+ exports.default = runExecutor;
11
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../onix/src/executors/executor.ts"],"names":[],"mappings":";;;AAGA,MAAM,WAAW,GAAwC,CAAO,OAAO,EAAE,EAAE;IACzE,OAAO,CAAC,GAAG,CAAC,uBAAuB,EAAE,OAAO,CAAC,CAAC;IAC9C,OAAO;QACL,OAAO,EAAE,IAAI;KACd,CAAC;AACJ,CAAC,CAAA,CAAC;AAEF,kBAAe,WAAW,CAAC"}
@@ -0,0 +1 @@
1
+ export interface XxxxExecutorSchema {} // eslint-disable-line
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Xxxx executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {},
8
+ "required": []
9
+ }
package/src/index.d.ts ADDED
File without changes
package/src/index.js ADDED
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../onix/src/index.ts"],"names":[],"mappings":""}