only_ever_generator 0.4.2 → 0.4.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/dist/index.js +3 -4
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -7,10 +7,9 @@
|
|
|
7
7
|
// const app = express();
|
|
8
8
|
// const port = 3000;
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
// export {OnlyEverGenerator};
|
|
10
|
+
exports.OnlyEverGenerator = void 0;
|
|
11
|
+
const app_1 = require("./bootstrap/app");
|
|
12
|
+
Object.defineProperty(exports, "OnlyEverGenerator", { enumerable: true, get: function () { return app_1.OnlyEverGenerator; } });
|
|
14
13
|
// //. All the Codes Below uses express and are strictly for development purpose, while publishing the package, comment everything
|
|
15
14
|
// //below this line
|
|
16
15
|
// let oeGen = new OnlyEverGenerator(config.openAIKey, "gpt-4o", {
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { OnlyEverGenerator } from "./bootstrap/app";
|
|
|
11
11
|
|
|
12
12
|
/// While Publishing the package , and using this code as a separate npm module
|
|
13
13
|
/// uncomment the below line and comment all the others, expect the import of OnlyEverGenerator
|
|
14
|
-
|
|
14
|
+
export {OnlyEverGenerator};
|
|
15
15
|
|
|
16
16
|
// //. All the Codes Below uses express and are strictly for development purpose, while publishing the package, comment everything
|
|
17
17
|
// //below this line
|