Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug/build dev #1144

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
105bb09
limit editor file size to 1 million characters
loiswells97 Nov 19, 2024
b8235f7
updating changelog
loiswells97 Nov 19, 2024
216863c
linting
loiswells97 Nov 19, 2024
616641a
up file size limit to 8.5 million
loiswells97 Nov 19, 2024
550ea5c
increase autosave interval for large files
loiswells97 Nov 20, 2024
e5659e6
increase autosave interval for large files
loiswells97 Nov 20, 2024
77ab18d
put combined file size limit in variable
loiswells97 Nov 20, 2024
fc85a7f
adding design system alert to warn users when they exceed the charact…
loiswells97 Nov 20, 2024
40e0348
linting
loiswells97 Nov 20, 2024
994905e
more linting fixing
loiswells97 Nov 20, 2024
9edbf96
adding newlines to end of files
loiswells97 Nov 21, 2024
8ed840a
add tests
loiswells97 Nov 21, 2024
5d36e23
fixing random cypress test that was randomly failing
loiswells97 Nov 21, 2024
4321988
add rpf design system react to storybook package json
loiswells97 Nov 21, 2024
4d3bef9
adding deisgn system core to storybook
loiswells97 Nov 21, 2024
6a627a0
build(deploy): remove storybook from non-prod build pipelines
sra405 Nov 21, 2024
1e2c953
yarn lock
Nov 21, 2024
526d680
Revert "build(deploy): remove storybook from non-prod build pipelines"
Nov 21, 2024
4f5d0fa
rebuild
Nov 21, 2024
cedf8ef
Limit editor file size (#1138)
Nov 21, 2024
4293f22
v0.28.8 (#1143)
loiswells97 Nov 21, 2024
bdedc2b
adding design system alert to warn users when they exceed the charact…
loiswells97 Nov 20, 2024
dcc2636
adding newlines to end of files
loiswells97 Nov 21, 2024
b4fce68
rebuild
Nov 21, 2024
f8a4918
Merge branch 'main' into bug/build-dev
conorriches Nov 21, 2024
36ee999
yarn
Nov 21, 2024
c0c9b44
revert
Nov 21, 2024
f2366ce
storybook yarn
Nov 21, 2024
3b86785
workspace
Nov 21, 2024
a207a40
workspace
Nov 21, 2024
bf01f98
baseurl
Nov 21, 2024
a00e64a
try webpack
Nov 21, 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
7 changes: 3 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,9 @@ jobs:

- name: Build WC bundle
run: |
# TODO: Reinitialise when storybook build is fixed
# if [[ "${{ inputs.environment }}" != "production" ]]; then
# yarn build:dev
# fi
if [[ "${{ inputs.environment }}" != "production" ]]; then
yarn build:dev
fi
yarn build
env:
PUBLIC_URL: ${{ needs.setup-environment.outputs.public_url }}
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "@raspberrypifoundation/editor-ui",
"version": "0.28.8",
"private": true,
"workspaces": [
"storybook"
],
"dependencies": {
"@apollo/client": "^3.7.8",
"@babel/core": "^7.17.10",
Expand Down
6 changes: 5 additions & 1 deletion storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,9 @@
}
]
},
"baseUrl": "../src"
"baseUrl": "../",
"description": "This directory contains the config and dependencies for separate Storybook instance alongside an application.",
"main": "index.js",
"author": "",
"license": "ISC"
}
Loading
Loading