only_ever_generator 0.1.3 → 0.1.4

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 CHANGED
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
2
+ // import express from "express";
3
+ // import { returnCardGenPrompt } from "./constants/prompts/card_gen_prompt";
4
+ // import { returnTypologyPrompt } from "./constants/prompts/typology_prompt";
5
+ // import { GenerateArgs } from "./utils/generate_args";
6
+ // import { returnFields, returnHeadings, returnSourceData } from "./constants/source_data";
7
+ // import config from "./config";
8
+ // const app = express();
9
+ // const port = 3000;
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
6
11
  exports.OnlyEverGenerator = void 0;
7
- const express_1 = __importDefault(require("express"));
8
- const app = (0, express_1.default)();
9
- const port = 3000;
10
12
  const app_1 = require("./bootstrap/app");
11
13
  Object.defineProperty(exports, "OnlyEverGenerator", { enumerable: true, get: function () { return app_1.OnlyEverGenerator; } });
12
14
  /// All the Codes Below uses express and are strictly for development purpose, while publishing the package, comment everything
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "only_ever_generator",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "start": "npm run build && nodemon dist/index.js",
package/src/index.ts CHANGED
@@ -1,12 +1,12 @@
1
1
 
2
- import express from "express";
3
- import { returnCardGenPrompt } from "./constants/prompts/card_gen_prompt";
4
- import { returnTypologyPrompt } from "./constants/prompts/typology_prompt";
5
- import { GenerateArgs } from "./utils/generate_args";
6
- import { returnFields, returnHeadings, returnSourceData } from "./constants/source_data";
7
- import config from "./config";
8
- const app = express();
9
- const port = 3000;
2
+ // import express from "express";
3
+ // import { returnCardGenPrompt } from "./constants/prompts/card_gen_prompt";
4
+ // import { returnTypologyPrompt } from "./constants/prompts/typology_prompt";
5
+ // import { GenerateArgs } from "./utils/generate_args";
6
+ // import { returnFields, returnHeadings, returnSourceData } from "./constants/source_data";
7
+ // import config from "./config";
8
+ // const app = express();
9
+ // const port = 3000;
10
10
 
11
11
  import { OnlyEverGenerator } from "./bootstrap/app";
12
12