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

Combine all themes into a single playground #1539

Merged
merged 29 commits into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cbaaeda
move playground to new folder
epicfaace Dec 10, 2019
f046468
move playground to packages and standardize playground structure
epicfaace Dec 10, 2019
f6a12ef
don't rely on bootstrap in playground
epicfaace Dec 10, 2019
f41a640
fix styling, move share button to top right
epicfaace Dec 10, 2019
ee38f65
remove footer things
epicfaace Dec 10, 2019
a8a9e55
more fixes
epicfaace Dec 10, 2019
9d8b3cd
encode theme in playground hash
epicfaace Dec 10, 2019
e864df5
fix: don't switch to default theme when changing tabs
epicfaace Dec 10, 2019
2a4a558
correct package name is @rjsf/playground
epicfaace Dec 22, 2019
54d4277
fix prod config for playground
epicfaace Dec 22, 2019
eef683f
fix more configs
epicfaace Jan 3, 2020
4fe0fef
use webpack-dev-server
epicfaace Jan 8, 2020
db59c4a
render form in a Frame
epicfaace Jan 8, 2020
c39c41b
add dependencies
epicfaace Jan 8, 2020
4ae0ecc
use DemoFrame component to properly fix material-ui styles
epicfaace Jan 8, 2020
1afd0a5
use old bootstrap look and feel for the playground itself
epicfaace Jan 8, 2020
ddbb957
fix dist
epicfaace Jan 9, 2020
647ed89
move netlify toml
epicfaace Jan 9, 2020
dfd513d
update netlify
epicfaace Jan 9, 2020
b3fe2ed
empty commit
epicfaace Feb 7, 2020
cdacb07
remove npm prepare to speed up travis runs
epicfaace Feb 25, 2020
ccfd49d
fix webpack dist config for playground
epicfaace Feb 25, 2020
7cf5302
Merge branch 'master' into playground
epicfaace Feb 25, 2020
a0945f7
Merge branch 'master' of github.com:rjsf-team/react-jsonschema-form i…
epicfaace Feb 25, 2020
f2e7ca2
fix import
epicfaace Feb 25, 2020
bfc7400
disable minicssextractplugin to try to fix netlify
epicfaace Feb 25, 2020
1161988
fix netlify path
epicfaace Feb 25, 2020
b17b778
no need to build playground / gh-pages for core package
epicfaace Feb 25, 2020
abbbddd
add HtmlWebpackPlugin
epicfaace Feb 25, 2020
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: 7 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[build]
base = "packages/playground"
publish = "build"
command = "npm run build:playground"

[build.environment]
SHOW_NETLIFY_BADGE = "true"
3 changes: 0 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@
"scripts": {
"build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js",
"build:playground": "rimraf build && cross-env NODE_ENV=production webpack --config webpack.config.prod.js && cp playground/index.prod.html build/index.html",
"cs-check": "prettier -l \"{playground,src,test}/**/*.js\"",
"cs-format": "prettier \"{playground,src,test}/**/*.js\" --write",
"dist": "npm run build:lib && npm run build:dist",
"lint": "eslint src test playground",
"prepare": "npm run dist",
"precommit": "lint-staged",
"publish-to-gh-pages": "npm run build:playground && gh-pages --dist build/",
"publish-to-npm": "npm run dist && npm publish",
"preversion": "npm run build:playground && npm run dist && npm run cs-check && npm run lint",
"start": "node devServer.js",
Expand Down
Loading