@memberjunction/cli 2.56.0 → 2.58.0
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/dist/hooks/init.d.ts +7 -0
- package/dist/hooks/init.js +10 -0
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/**
|
|
4
|
+
* Init hook runs once when the CLI starts up.
|
|
5
|
+
* Currently unused but required by oclif configuration.
|
|
6
|
+
*/
|
|
7
|
+
const hook = async function () {
|
|
8
|
+
// No initialization needed at this time
|
|
9
|
+
};
|
|
10
|
+
exports.default = hook;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.58.0",
|
|
4
4
|
"description": "MemberJunction command line tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oclif"
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@inquirer/prompts": "^5.0.1",
|
|
54
|
-
"@memberjunction/codegen-lib": "2.
|
|
55
|
-
"@memberjunction/metadata-sync": "2.
|
|
56
|
-
"@memberjunction/sqlserver-dataprovider": "2.
|
|
54
|
+
"@memberjunction/codegen-lib": "2.58.0",
|
|
55
|
+
"@memberjunction/metadata-sync": "2.58.0",
|
|
56
|
+
"@memberjunction/sqlserver-dataprovider": "2.58.0",
|
|
57
57
|
"@oclif/core": "^3",
|
|
58
58
|
"@oclif/plugin-help": "^6",
|
|
59
59
|
"@oclif/plugin-version": "^2.0.17",
|