Skip to content

Commit 4d98849

Browse files
authored
Merge pull request #398 from constructive-io/pgpm-rename
Pgpm rename
2 parents d20ccff + 4ec4430 commit 4d98849

159 files changed

Lines changed: 3489 additions & 7926 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

graphile/graphile-cache/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"test:watch": "jest --watch"
3030
},
3131
"dependencies": {
32-
"@launchql/logger": "workspace:^",
32+
"@pgpmjs/logger": "workspace:^",
3333
"lru-cache": "^11.2.4",
3434
"pg": "^8.16.3",
3535
"pg-cache": "workspace:^",

graphile/graphile-cache/src/graphile-cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Logger } from '@launchql/logger';
1+
import { Logger } from '@pgpmjs/logger';
22
import { LRUCache } from 'lru-cache';
33
import pg from 'pg';
44
import { pgCache } from 'pg-cache';

graphile/graphile-settings/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
},
3131
"dependencies": {
3232
"@graphile-contrib/pg-many-to-many": "^1.0.2",
33-
"@launchql/env": "workspace:^",
34-
"@launchql/types": "workspace:^",
33+
"@pgpmjs/env": "workspace:^",
34+
"@pgpmjs/types": "workspace:^",
3535
"cors": "^2.8.5",
3636
"express": "^5.1.0",
3737
"graphile-build": "^4.14.1",

graphile/graphile-settings/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import PgManyToMany from '@graphile-contrib/pg-many-to-many';
2-
import { getEnvOptions } from '@launchql/env';
3-
import { LaunchQLOptions } from '@launchql/types';
2+
import { getEnvOptions } from '@pgpmjs/env';
3+
import { PgpmOptions } from '@pgpmjs/types';
44
import PgPostgis from 'graphile-postgis';
55
import FulltextFilterPlugin from 'graphile-plugin-fulltext-filter';
66
import { NodePlugin, Plugin } from 'graphile-build';
@@ -19,7 +19,7 @@ import CustomPgTypeMappingsPlugin from 'graphile-pg-type-mappings';
1919
import UploadPostGraphilePlugin, { Uploader } from 'graphile-upload-plugin';
2020

2121
export const getGraphileSettings = (
22-
rawOpts: LaunchQLOptions
22+
rawOpts: PgpmOptions
2323
): PostGraphileOptions => {
2424
const opts = getEnvOptions(rawOpts);
2525

graphile/graphile-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"makage": "^0.1.8"
3535
},
3636
"dependencies": {
37-
"@launchql/types": "workspace:^",
37+
"@pgpmjs/types": "workspace:^",
3838
"graphql": "15.10.1",
3939
"mock-req": "^0.2.0",
4040
"pg": "^8.16.3",

graphile/graphile-test/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { GraphileOptions } from '@launchql/types';
1+
import type { GraphileOptions } from '@pgpmjs/types';
22
import { DocumentNode, GraphQLError } from 'graphql';
33

44
export interface GraphQLQueryOptions<TVariables = Record<string, any>> {

graphile/graphile-upload-plugin/__tests__/plugin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { join } from 'path';
33
import { createReadStream, writeFileSync, unlinkSync } from 'fs';
44
import { tmpdir } from 'os';
55
import { S3Client } from '@aws-sdk/client-s3';
6-
import { getEnvOptions } from '@launchql/env';
6+
import { getEnvOptions } from '@pgpmjs/env';
77
import { createS3Bucket } from '@launchql/s3-utils';
88
import { getConnections, snapshot, seed } from 'graphile-test';
99
import type { PgTestClient } from 'pgsql-test/test-client';

graphile/graphile-upload-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"devDependencies": {
4141
"@aws-sdk/client-s3": "^3.948.0",
42-
"@launchql/env": "workspace:^",
42+
"@pgpmjs/env": "workspace:^",
4343
"@launchql/s3-utils": "workspace:^",
4444
"@types/pg": "^8.16.0",
4545
"graphile-test": "workspace:^",

jobs/job-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"url": "https://github.com/launchql/jobs/issues"
2929
},
3030
"dependencies": {
31-
"@launchql/types": "workspace:^",
31+
"@pgpmjs/types": "workspace:^",
3232
"envalid": "6.0.2"
3333
}
3434
}

jobs/job-utils/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66
RunScheduledJobParams,
77
ReleaseScheduledJobsParams,
88
ReleaseJobsParams
9-
} from '@launchql/types';
9+
} from '@pgpmjs/types';
1010
import env from './env';
1111
const { JOBS_SCHEMA } = env;
1212

0 commit comments

Comments
 (0)