Skip to content

Commit

Permalink
[add] WebCell Editor implement (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechQuery committed Feb 14, 2024
1 parent 437f3d7 commit 769b618
Show file tree
Hide file tree
Showing 36 changed files with 3,430 additions and 544 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,14 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Install & Publish wrapper packages
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: sh publish-wrappers.sh WebCell React

- name: Update document
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./docs
personal_token: ${{ secrets.GITHUB_TOKEN }}
force_orphan: true
- name: Install & Publish React package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
cd React/
pnpm i --frozen-lockfile
npm publish
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
node_modules/
package-lock.json
yarn.lock
dist/
.parcel-cache/
docs/
Expand Down
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
React/
test/
docs/
.parcel-cache/
.parcel*
.husky/
.vscode/
.github/
2 changes: 1 addition & 1 deletion React/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Lightweight **Rich Text Editor** based on [Edkit][1], [React][2] & [Bootstrap][3

## Demo

https://idea2app.github.io/React-MobX-Bootstrap-ts/#/component
https://idea2app.github.io/Edkit/React/

## Tools

Expand Down
14 changes: 7 additions & 7 deletions React/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-bootstrap-editor",
"version": "2.0.0",
"version": "2.0.1",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"contributors": [
Expand All @@ -23,9 +23,9 @@
"source": "source/index.ts",
"types": "dist/index.d.ts",
"dependencies": {
"@swc/helpers": "^0.5.3",
"edkit": "^1.0.2",
"mobx": ">=6.12",
"@swc/helpers": "^0.5.6",
"edkit": "^1.1.0-rc.0",
"mobx": ">=6.11",
"mobx-react": ">=9.1",
"web-utility": "^4.1.3"
},
Expand All @@ -38,8 +38,8 @@
"@parcel/packager-ts": "~2.11.0",
"@parcel/transformer-typescript-tsc": "~2.11.0",
"@parcel/transformer-typescript-types": "~2.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"parcel": "~2.11.0",
"process": "^0.11.10",
"react": "^18.2.0",
Expand All @@ -54,7 +54,7 @@
},
"scripts": {
"start": "cd test/ && parcel index.html --open",
"build": "rm -rf dist/ && parcel build",
"build": "rm -rf dist/ && parcel build --public-url .",
"prepublishOnly": "npm run build"
}
}
Loading

0 comments on commit 769b618

Please sign in to comment.