create-db 1.0.6-pr49-version-bump-to-1.0.5-17274471643.0 → 1.0.7-pr50-remove-replace-17274596200.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/index.js +2 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -13,11 +13,9 @@ dotenv.config();
|
|
|
13
13
|
const CLI_RUN_ID = randomUUID();
|
|
14
14
|
|
|
15
15
|
const CREATE_DB_WORKER_URL =
|
|
16
|
-
process.env.CREATE_DB_WORKER_URL
|
|
17
|
-
"https://create-db-temp.prisma.io";
|
|
16
|
+
process.env.CREATE_DB_WORKER_URL || "https://create-db-temp.prisma.io";
|
|
18
17
|
const CLAIM_DB_WORKER_URL =
|
|
19
|
-
process.env.CLAIM_DB_WORKER_URL
|
|
20
|
-
"https://create-db.prisma.io";
|
|
18
|
+
process.env.CLAIM_DB_WORKER_URL || "https://create-db.prisma.io";
|
|
21
19
|
|
|
22
20
|
async function sendAnalyticsToWorker(eventName, properties) {
|
|
23
21
|
const controller = new AbortController();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-db",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7-pr50-remove-replace-17274596200.0",
|
|
4
4
|
"description": "Instantly create a temporary Prisma Postgres database with one command, then claim and persist it in your Prisma Data Platform project when ready.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "",
|