Skip to content

Commit e3dbcc4

Browse files
authored
Merge pull request #166 from Boggle-Boggle/develop
Develop -> Staging
2 parents e672ac9 + d863696 commit e3dbcc4

46 files changed

Lines changed: 2064 additions & 767 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ module.exports = {
3434
namedComponents: 'arrow-function',
3535
},
3636
],
37+
'import/prefer-default-export': ['off' | 'warn' | 'error'],
3738
'import/order': [
3839
'error',
3940
{

.github/workflows/chromatic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: 'Chromatic Deployment'
33
on:
44
push:
55
branches:
6-
- develop
6+
- staging
77
paths:
8-
- '**/*.storybook.**'
8+
- '**/*.stories.*'
99

1010
jobs:
1111
chromatic:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@ dist-ssr
2828

2929
*storybook.log
3030
storybook-static
31+
32+
33+
opencode.json

.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StorybookConfig } from '@storybook/react-vite';
1+
import { StorybookConfig } from '@storybook/react-vite';
22

33
const config: StorybookConfig = {
44
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],

.storybook/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import '../src/main.css';
22

3-
import type { Preview } from '@storybook/react-vite';
3+
import { Preview } from '@storybook/react-vite';
44

55
const preview: Preview = {
66
parameters: {

0 commit comments

Comments
 (0)