-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New version 5.0.0-beta.1. Read more https://github.com/jodit/jodit-re…
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "jodit-react", | ||
"version": "5.0.0-beta.0", | ||
"version": "5.0.0-beta.1", | ||
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser", | ||
"main": "build/jodit-react.js", | ||
"author": "Chupurnov <[email protected]> (https://xdsoft.net/)", | ||
|
@@ -48,12 +48,12 @@ | |
"newversion": "npm version prerelease --preid=beta --no-git-tag-version && npm run github", | ||
"lint": "npm run lint:ts && npm run lint:eslint", | ||
"lint:ts": "tsc --noEmit", | ||
"lint:eslint": "eslint ./", | ||
"lint:eslint": "eslint ./", | ||
"demo": "NODE_ENV=development node -r @swc-node/register ./node_modules/.bin/webpack serve --config ./examples/webpack.config.ts --mode development", | ||
"start": "npm run demo", | ||
"build": "npm run build:react && npm run build:types", | ||
"build:react": "NODE_ENV=production node -r @swc-node/register ./node_modules/.bin/webpack --mode production", | ||
"build:types": "rm -rf ./build/types && tsc --project tsconfig.types.json --emitDeclarationOnly", | ||
"build:types": "rm -rf ./build/types && tsc --project tsconfig.types.json --emitDeclarationOnly", | ||
"github": "npm run git && git push --tags origin HEAD:main", | ||
"git": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/jodit/jodit-react/releases/tag/$npm_package_version \" && git tag $npm_package_version" | ||
}, | ||
|