@helloao/cli 0.0.8-alpha → 0.0.9
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/cjs/cli.cjs +5 -5
- package/package.json +2 -2
- package/prisma-gen/edge.js +1 -1
- package/prisma-gen/index.js +5 -5
package/dist/cjs/cli.cjs
CHANGED
|
@@ -5273,7 +5273,7 @@ var require_prisma_gen = __commonJS({
|
|
|
5273
5273
|
"db"
|
|
5274
5274
|
],
|
|
5275
5275
|
"activeProvider": "sqlite",
|
|
5276
|
-
"postinstall":
|
|
5276
|
+
"postinstall": false,
|
|
5277
5277
|
"inlineDatasources": {
|
|
5278
5278
|
"db": {
|
|
5279
5279
|
"url": {
|
|
@@ -5290,8 +5290,8 @@ var require_prisma_gen = __commonJS({
|
|
|
5290
5290
|
config2.dirname = __dirname;
|
|
5291
5291
|
if (!fs2.existsSync(path5.join(__dirname, "schema.prisma"))) {
|
|
5292
5292
|
const alternativePaths = [
|
|
5293
|
-
"prisma-gen",
|
|
5294
|
-
""
|
|
5293
|
+
"packages/helloao-cli/prisma-gen",
|
|
5294
|
+
"helloao-cli/prisma-gen"
|
|
5295
5295
|
];
|
|
5296
5296
|
const alternativePath = alternativePaths.find((altPath) => {
|
|
5297
5297
|
return fs2.existsSync(path5.join(process.cwd(), altPath, "schema.prisma"));
|
|
@@ -5311,9 +5311,9 @@ var require_prisma_gen = __commonJS({
|
|
|
5311
5311
|
exports2.PrismaClient = PrismaClient2;
|
|
5312
5312
|
Object.assign(exports2, Prisma2);
|
|
5313
5313
|
path5.join(__dirname, "query_engine-windows.dll.node");
|
|
5314
|
-
path5.join(process.cwd(), "prisma-gen/query_engine-windows.dll.node");
|
|
5314
|
+
path5.join(process.cwd(), "packages/helloao-cli/prisma-gen/query_engine-windows.dll.node");
|
|
5315
5315
|
path5.join(__dirname, "schema.prisma");
|
|
5316
|
-
path5.join(process.cwd(), "prisma-gen/schema.prisma");
|
|
5316
|
+
path5.join(process.cwd(), "packages/helloao-cli/prisma-gen/schema.prisma");
|
|
5317
5317
|
}
|
|
5318
5318
|
});
|
|
5319
5319
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helloao/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "A CLI and related tools for managing HelloAO's Free Bible API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"author": "Kallyn Gowdy <kal@helloao.org>",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@helloao/tools": "^0.0.
|
|
18
|
+
"@helloao/tools": "^0.0.9",
|
|
19
19
|
"commander": "12.1.0",
|
|
20
20
|
"@gracious.tech/fetch-client": "^0.7.0",
|
|
21
21
|
"prisma": "^5.12.1",
|
package/prisma-gen/edge.js
CHANGED
package/prisma-gen/index.js
CHANGED
|
@@ -210,7 +210,7 @@ const config = {
|
|
|
210
210
|
"db"
|
|
211
211
|
],
|
|
212
212
|
"activeProvider": "sqlite",
|
|
213
|
-
"postinstall":
|
|
213
|
+
"postinstall": false,
|
|
214
214
|
"inlineDatasources": {
|
|
215
215
|
"db": {
|
|
216
216
|
"url": {
|
|
@@ -229,8 +229,8 @@ const fs = require('fs')
|
|
|
229
229
|
config.dirname = __dirname
|
|
230
230
|
if (!fs.existsSync(path.join(__dirname, 'schema.prisma'))) {
|
|
231
231
|
const alternativePaths = [
|
|
232
|
-
"prisma-gen",
|
|
233
|
-
"",
|
|
232
|
+
"packages/helloao-cli/prisma-gen",
|
|
233
|
+
"helloao-cli/prisma-gen",
|
|
234
234
|
]
|
|
235
235
|
|
|
236
236
|
const alternativePath = alternativePaths.find((altPath) => {
|
|
@@ -259,7 +259,7 @@ Object.assign(exports, Prisma)
|
|
|
259
259
|
|
|
260
260
|
// file annotations for bundling tools to include these files
|
|
261
261
|
path.join(__dirname, "query_engine-windows.dll.node");
|
|
262
|
-
path.join(process.cwd(), "prisma-gen/query_engine-windows.dll.node")
|
|
262
|
+
path.join(process.cwd(), "packages/helloao-cli/prisma-gen/query_engine-windows.dll.node")
|
|
263
263
|
// file annotations for bundling tools to include these files
|
|
264
264
|
path.join(__dirname, "schema.prisma");
|
|
265
|
-
path.join(process.cwd(), "prisma-gen/schema.prisma")
|
|
265
|
+
path.join(process.cwd(), "packages/helloao-cli/prisma-gen/schema.prisma")
|