-
-
Notifications
You must be signed in to change notification settings - Fork 504
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* workspaces wip test works . . . . . * . * esm, no decorators, vite * todo! fullySpecified * sandbox-simple * vite * sandbox simple * sandbox * lint fix * . * todo: move webpack & babel to root . . * antd wip * good lint * utils * deps split . * mui * add react to dev deps * material * bootstrap * 6.0.0 * . . . * 1 * split core to core & ui * , * . * remove fullySpecified: false and type: module * . * VanillaWidgets . * readme * . * . * fixes for hoist * pnpm works ? * pnpm ready * . * for yarn v1 * Revert "for yarn v1" This reverts commit 61f46e8. * for npm 7 * fix pushd * fix build sh * workspace:* * no yarn build * pnpm * . * . * . * . * . * . * --access public * fix immutable has no default * 6.0.0-beta.1 * gitignore * 6.0.0-beta.2 * immutable 4 * beta3 * sass * Revert "immutable 4" This reverts commit 3e219f1. * Revert "fix immutable has no default" This reverts commit 161b3fd. * important fix * dirs cjs, esm, styles -> css . . * . * beta4 * . * styles! * . * . * . * css split a bit * beta5 * . * pnpm/action-setup . * readme * pnpm-lock.yaml * artifacts * smoko, del gpr * gh-pages * . * . * . * test! * . * . * . * test * . * . * . * . * csb * . * . * . * . * port * Revert "test!" This reverts commit 70f0cad. * . * tags * v6.0.0
- Loading branch information
Showing
384 changed files
with
17,860 additions
and
2,776 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
node_modules | ||
build | ||
dist | ||
ts_out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,37 +6,34 @@ on: | |
workflow_dispatch: | ||
|
||
jobs: | ||
page_build: | ||
name: Update GitHub pages | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
ref: master | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '14.x' | ||
- run: npm install | ||
- name: Build examples | ||
run: npm run build-examples | ||
- name: Copy build | ||
run: | | ||
rm -rf /tmp/react-awesome-query-builder | ||
mkdir /tmp/react-awesome-query-builder | ||
mkdir /tmp/react-awesome-query-builder/gh-pages | ||
cp ./examples/build/*bundle* /tmp/react-awesome-query-builder/gh-pages/ | ||
- uses: actions/checkout@v1 | ||
with: | ||
ref: gh-pages | ||
- name: Commit build | ||
run: | | ||
cp -R /tmp/react-awesome-query-builder/gh-pages/* . | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add ./*bundle* | ||
git commit -m "update to ${GITHUB_SHA}" | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
branch: gh-pages | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/checkout@v3 | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 7 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
#cache: 'pnpm' | ||
- name: Install packages | ||
run: pnpm i | ||
- name: Setup | ||
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | ||
- name: Build | ||
run: pnpm build | ||
- name: Copy build | ||
run: | | ||
rm -rf /tmp/gh-pages | ||
mkdir /tmp/gh-pages | ||
cp ./packages/examples/build/* /tmp/gh-pages/ | ||
mkdir /tmp/gh-pages/sandbox | ||
cp -r ./packages/sandbox/dist/* /tmp/gh-pages/sandbox/ | ||
mkdir /tmp/gh-pages/sandbox_simple | ||
cp -r ./packages/sandbox_simple/dist/* /tmp/gh-pages/sandbox_simple/ | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: /tmp/gh-pages/ |
Oops, something went wrong.