We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6401eba commit f84a215Copy full SHA for f84a215
.gitignore
@@ -10,6 +10,7 @@ build/
10
dist/
11
coverage/
12
scratch/
13
+*.d.ts
14
*.js.map
15
*.pyc
16
*.tsbuildinfo
packages/integrations/scripts/buildBundles.sh
@@ -6,7 +6,7 @@ for filepath in ./src/*; do
6
# The index file is only there for the purposes of npm builds (for the CDN we create a separate bundle for each
7
# integration) and the flags file is just a helper for including or not including debug logging, whose contents gets
8
# incorporated into each of the individual integration bundles, so we can skip them both here.
9
- if [[ $file == "index.ts" || $file == "globals.d.ts" ]]; then
+ if [[ $file == "index.ts" ]]; then
continue
fi
0 commit comments