Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
00b0956
CI: Configure bun on CircleCI
valentinpalkovic Jun 6, 2024
58da775
Docs: Edit contribution guide to setup bun
valentinpalkovic Jun 6, 2024
78404c7
Build: Use bun to run scripts instead of esbuild-register
valentinpalkovic Jun 6, 2024
f9aec85
Build: Modify scripts to make them compatible for Bun runtime
valentinpalkovic Jun 6, 2024
332b49f
Build: Cleanup
valentinpalkovic Jun 6, 2024
7a6f7e0
Build: Streamline yarn version
valentinpalkovic Jun 6, 2024
ac5af01
Build: Remove esbuild-register from scripts
valentinpalkovic Jun 6, 2024
a29c582
Build: Install @types/bun
valentinpalkovic Jun 6, 2024
7180b58
Dependencies: Update execa in scripts
valentinpalkovic Jun 6, 2024
6f93864
Update lock file
valentinpalkovic Jun 7, 2024
9044223
WIP
valentinpalkovic Jun 7, 2024
29d8c88
chore: Add process.exit in addon-bundle and esm-bundle scripts
valentinpalkovic Jun 7, 2024
50aa377
Chore: Update autogemerated frameworks.ts
valentinpalkovic Jun 7, 2024
e3913b5
Fix compodoc script execution
valentinpalkovic Jun 7, 2024
249ae4c
Build: Fix verdaccio
valentinpalkovic Jun 10, 2024
2266685
Merge remote-tracking branch 'origin/next' into valentin/bun
valentinpalkovic Jun 10, 2024
7dc80d6
Remove timeout
valentinpalkovic Jun 10, 2024
ba6c56c
Build: Add temporary user to verdaccio registry
valentinpalkovic Jun 10, 2024
e2a35e1
Dependency: Set pino to v9
valentinpalkovic Jun 10, 2024
4478cc5
Revert changes on addUser function
valentinpalkovic Jun 10, 2024
50d80ae
Add missing bun orb
valentinpalkovic Jun 11, 2024
40347b1
Merge remote-tracking branch 'origin/next' into valentin/bun
valentinpalkovic Jun 11, 2024
22e4d61
Build: Use tsx instead of bun to run verdaccio
valentinpalkovic Jun 19, 2024
ec50aa0
refactor: update exec.ts to use execaNode for running node commands
valentinpalkovic Jun 19, 2024
d30bae7
Merge remote-tracking branch 'origin/next' into valentin/bun
valentinpalkovic Jun 19, 2024
af56908
Build: Save list of supported frameworks in alphabetical order
valentinpalkovic Jun 19, 2024
c37ec6a
Add bun-orb to script-checks job in CircleCI
valentinpalkovic Jun 25, 2024
a4609b6
Use updated playwright image for CI
valentinpalkovic Jun 25, 2024
c10f8c2
Use updated Bun version on CI
valentinpalkovic Jun 25, 2024
b8d5fc8
Revert "Use updated playwright image for CI"
valentinpalkovic Jun 25, 2024
e9713a1
Install unzip for test-portable-stories jobs
valentinpalkovic Jun 25, 2024
e68e5f4
chore: Update Playwright image version to v1.42.1-focal
valentinpalkovic Jun 25, 2024
af565d4
Add --debug flag to yarn task commands in CircleCI config
valentinpalkovic Jun 25, 2024
395c7c7
Merge remote-tracking branch 'origin/next' into valentin/bun
valentinpalkovic Jun 28, 2024
8e67707
WIP
valentinpalkovic Jul 1, 2024
5021fc1
Merge remote-tracking branch 'origin/next' into valentin/bun
valentinpalkovic Jul 2, 2024
884fa85
Merge remote-tracking branch 'origin/next' into valentin/bun
valentinpalkovic Jul 12, 2024
754dc72
Upgrade to Bun 1.1.18
valentinpalkovic Jul 12, 2024
2b09afc
Fix trailing comma
valentinpalkovic Jul 12, 2024
a7783f8
Small fixes
valentinpalkovic Jul 12, 2024
a0e77a3
Upgrade NX and TypeScript
valentinpalkovic Jul 12, 2024
b237cd6
Add process exit to close the verdaccio server
valentinpalkovic Jul 12, 2024
b9d1111
Update lock file
valentinpalkovic Jul 12, 2024
ac3c8e1
Add rimraf devDependency
valentinpalkovic Jul 12, 2024
349a5a3
Merge branch 'next' into valentin/bun
ndelangen Jul 16, 2024
01567dc
dedupe
ndelangen Jul 16, 2024
2ff0513
fix check command
ndelangen Jul 16, 2024
eebb41c
cleanup deprecated nx option
ndelangen Jul 16, 2024
d3fc596
attempt at fixing this:
ndelangen Jul 17, 2024
3997257
test at debugging:
ndelangen Jul 17, 2024
a995464
try something else
ndelangen Jul 17, 2024
e679544
try more fixes
ndelangen Jul 17, 2024
2ad9512
fixes
ndelangen Jul 17, 2024
cf88938
debugging
ndelangen Jul 17, 2024
84d2574
fix
ndelangen Jul 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Build: Cleanup
  • Loading branch information
valentinpalkovic committed Jun 6, 2024
commit 332b49f311bafa2543e9a56d6911e35b524cecbb
14 changes: 10 additions & 4 deletions scripts/build-package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,16 @@ async function run() {
helpText: `build only the ${pkg.name} package`,
};
})
.reduce((acc, next) => {
acc[next.name] = next;
return acc;
}, {} as Record<string, { name: string; defaultValue: boolean; suffix: string; helpText: string }>);
.reduce(
(acc, next) => {
acc[next.name] = next;
return acc;
},
{} as Record<
string,
{ name: string; defaultValue: boolean; suffix: string; helpText: string }
>
);

const tasks: Record<
string,
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils/cli-step.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const steps = {
init: {
command: 'init',
description: 'Initializing Storybook',
icon: '⚙️',
icon: '',
options: createOptions({
yes: { type: 'boolean' },
type: { type: 'string' },
Expand Down