Skip to content

Commit 75a3caa

Browse files
committed
pkg
1 parent b39baa1 commit 75a3caa

File tree

6 files changed

+16
-38
lines changed

6 files changed

+16
-38
lines changed

packages/hello-world/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ module.exports = {
1212
watchPathIgnorePatterns: ['/dist/'],
1313

1414
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
15-
};
15+
};

packages/supabase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @launchql/supabase
1+
# @lql-pg/supabase
22

33
<p align="center" width="100%">
44
<img height="250" src="https://raw.githubusercontent.com/launchql/supabase-test/refs/heads/main/docs/img/logos.svg" />

packages/supabase/jest.config.js

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
/** @type {import('ts-jest').JestConfigWithTsJest} */
22
module.exports = {
3-
preset: "ts-jest",
4-
testEnvironment: "node",
5-
transform: {
6-
"^.+\\.tsx?$": [
7-
"ts-jest",
8-
{
9-
babelConfig: false,
10-
tsconfig: "tsconfig.json",
11-
},
12-
],
13-
},
14-
transformIgnorePatterns: [`/node_modules/*`],
15-
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
16-
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
17-
modulePathIgnorePatterns: ["dist/*"]
18-
};
3+
preset: 'ts-jest',
4+
testEnvironment: 'node',
5+
6+
// Match both __tests__ and colocated test files
7+
testMatch: ['**/?(*.)+(test|spec).{ts,tsx,js,jsx}'],
8+
9+
// Ignore build artifacts and type declarations
10+
testPathIgnorePatterns: ['/dist/', '\\.d\\.ts$'],
11+
modulePathIgnorePatterns: ['<rootDir>/dist/'],
12+
watchPathIgnorePatterns: ['/dist/'],
13+
14+
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
15+
};

packages/supabase/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"name": "@launchql/supabase",
2+
"name": "@lql-pg/supabase",
33
"version": "0.0.1",
44
"author": "Interweb <[email protected]>",
55
"license": "MIT",
66
"publishConfig": {
77
"access": "public"
88
},
99
"scripts": {
10-
"clean": "rimraf dist/**",
1110
"lint": "eslint . --fix",
1211
"test": "jest",
1312
"test:watch": "jest --watch"

packages/supabase/tsconfig.esm.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/supabase/tsconfig.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)