Skip to content

Commit dd01463

Browse files
authored
chore: cleanups - pnpm removal - webpack polyfill - ci update (#1521)
* chore: remove pnpm * chore: deno testing lock files * chore: remove legacy webpack plugin * chore: rm old bundle before pushing new * fix: tmp * fix: gitignore test lock files
1 parent 4f38a9c commit dd01463

File tree

7 files changed

+100
-8583
lines changed

7 files changed

+100
-8583
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,8 @@ dist
106106

107107
docs/v2
108108

109+
# Test package-lock files (use local tarball, checksums change with builds)
110+
test/*/package-lock.json
111+
test/integration/*/package-lock.json
112+
109113
.cursor/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ When a Deno version reaches end-of-life and is no longer receiving security upda
108108
### Unit Testing
109109

110110
```bash
111-
pnpm test
111+
npm test
112112
```
113113

114114
### Integration Testing
115115

116116
```bash
117117
supabase start
118-
pnpm run test:integration
118+
npm run test:integration
119119
```
120120

121121
### Expo Testing

deno.lock

Lines changed: 91 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,5 @@
8686
}
8787
},
8888
"jsdelivr": "dist/umd/supabase.js",
89-
"unpkg": "dist/umd/supabase.js",
90-
"packageManager": "[email protected]+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
89+
"unpkg": "dist/umd/supabase.js"
9190
}

0 commit comments

Comments
 (0)