cxpher 2.0.0 → 2.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/bin/cXpher.js +12 -0
- package/cli-wrapper.cjs +13 -1
- package/install.cjs +13 -0
- package/package.json +1 -1
package/bin/cXpher.js
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* @license cxpher
|
|
4
|
+
|
|
5
|
+
* ▄▀▀▀▀▀▄ ▄▀▀▀▀▀▀ █▀▀▀▀▀▀ █▀▄ █ ▀▀▀█▀▀▀ ▀▀▀█▀▀▀ ▄▀▀▀▀▀▀ ▄▀▀▀▀▀▀ ™
|
|
6
|
+
* █▀▀▀▀▀█ █ ▀█▀ █▀▀▀▀▀ █ ▀▄ █ █ █ █ ▀▀▀▀▀▄
|
|
7
|
+
* ▀ ▀ ▀▀▀▀▀▀ ▀▀▀▀▀▀▀ ▀ ▀▀ ▀ ▀▀▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀▀
|
|
8
|
+
* This source code is licensed and governed by a Proprietary License.
|
|
9
|
+
* Permissions may be found in the LICENSE file located in the root directory.
|
|
10
|
+
|
|
11
|
+
* © Agentics (Pty) Ltd - All Rights Reserved
|
|
12
|
+
* https://agentics.co.za <-> info@agentics.co.za
|
|
13
|
+
*/
|
|
2
14
|
|
|
3
15
|
import { createRequire } from 'module';
|
|
4
16
|
|
package/cli-wrapper.cjs
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* @license cxpher
|
|
4
|
+
|
|
5
|
+
* ▄▀▀▀▀▀▄ ▄▀▀▀▀▀▀ █▀▀▀▀▀▀ █▀▄ █ ▀▀▀█▀▀▀ ▀▀▀█▀▀▀ ▄▀▀▀▀▀▀ ▄▀▀▀▀▀▀ ™
|
|
6
|
+
* █▀▀▀▀▀█ █ ▀█▀ █▀▀▀▀▀ █ ▀▄ █ █ █ █ ▀▀▀▀▀▄
|
|
7
|
+
* ▀ ▀ ▀▀▀▀▀▀ ▀▀▀▀▀▀▀ ▀ ▀▀ ▀ ▀▀▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀▀
|
|
8
|
+
* This source code is licensed and governed by a Proprietary License.
|
|
9
|
+
* Permissions may be found in the LICENSE file located in the root directory.
|
|
10
|
+
|
|
11
|
+
* © Agentics (Pty) Ltd - All Rights Reserved
|
|
12
|
+
* https://agentics.co.za <-> info@agentics.co.za
|
|
13
|
+
*/
|
|
2
14
|
|
|
3
15
|
// Fallback launcher for cxpher.
|
|
4
|
-
|
|
16
|
+
|
|
5
17
|
// Normally install.cjs (postinstall) copies the native binary over
|
|
6
18
|
// bin/<brand>.exe, so this file is never invoked. It exists for environments
|
|
7
19
|
// where postinstall doesn't run (--ignore-scripts) — pay the Node-process
|
package/install.cjs
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* @license cxpher
|
|
4
|
+
|
|
5
|
+
* ▄▀▀▀▀▀▄ ▄▀▀▀▀▀▀ █▀▀▀▀▀▀ █▀▄ █ ▀▀▀█▀▀▀ ▀▀▀█▀▀▀ ▄▀▀▀▀▀▀ ▄▀▀▀▀▀▀ ™
|
|
6
|
+
* █▀▀▀▀▀█ █ ▀█▀ █▀▀▀▀▀ █ ▀▄ █ █ █ █ ▀▀▀▀▀▄
|
|
7
|
+
* ▀ ▀ ▀▀▀▀▀▀ ▀▀▀▀▀▀▀ ▀ ▀▀ ▀ ▀▀▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀▀
|
|
8
|
+
* This source code is licensed and governed by a Proprietary License.
|
|
9
|
+
* Permissions may be found in the LICENSE file located in the root directory.
|
|
10
|
+
|
|
11
|
+
* © Agentics (Pty) Ltd - All Rights Reserved
|
|
12
|
+
* https://agentics.co.za <-> info@agentics.co.za
|
|
13
|
+
*/
|
|
14
|
+
|
|
2
15
|
// Postinstall for cxpher: replace bin/cXpher.js placeholder with the native
|
|
3
16
|
// binary from the matching optional-dependency subpackage. After this runs,
|
|
4
17
|
// invocations of `cxpher` (and aliases) exec the native binary directly on
|