Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
six7 committed Nov 21, 2023
1 parent 0c871c7 commit 7709492
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/tokens-studio-for-figma/src/app/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const initializeSentry = () => {
release: `figma-tokens@${pjs.version}`,
environment: process.env.ENVIRONMENT,
tracesSampleRate: SAMPLING,
// @ts-expect-error Note: This gives an error. No clue why 🤷
// @ts-ignore Note: This gives an error. No clue why 🤷
profilesSampleRate: PROFILE_RATE,
replaysSessionSampleRate: REPLAY_RATE,
// We always want to replay errors
Expand Down
2 changes: 1 addition & 1 deletion scripts/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ async function bundle() {
const zip = new JSZip();

fs.ensureDirSync('dist');
const files = await glob(['dist/*.js', 'dist/*.html'], { nodir: true });
const files = await glob(['packages/tokens-studio-for-figma/dist/*.js', 'packages/tokens-studio-for-figma/dist/*.html'], { nodir: true });

await Promise.all(files.map(async (file) => {
await zip.file(file, fs.readFileSync(file, 'utf8'));
Expand Down

0 comments on commit 7709492

Please sign in to comment.