Skip to content

Commit

Permalink
#1828 fix package version (#1833)
Browse files Browse the repository at this point in the history
* disabled polymer editor

* updared version to 2.6.1
  • Loading branch information
Nitvex authored Nov 10, 2022
1 parent 34c3f7f commit fb04543
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
"version": "1.0.0",
"private": true,
"scripts": {
"start:standalone": "cross-env MODE=standalone ENABLE_POLYMER_EDITOR=true react-app-rewired start",
"start:remote": "cross-env MODE=remote ENABLE_POLYMER_EDITOR=true react-app-rewired start",
"start:standalone": "cross-env MODE=standalone ENABLE_POLYMER_EDITOR=false react-app-rewired start",
"start:remote": "cross-env MODE=remote ENABLE_POLYMER_EDITOR=false react-app-rewired start",
"clean:build": "shx rm -rf build",
"delete:dist": "shx rm -rf dist/$MODE",
"init:dist": "shx mkdir -p dist/$MODE",
"copy:build": "shx cp -r build/. dist/$MODE",
"prebuild": "run-s delete:dist init:dist",
"postbuild": "run-s copy:build clean:build",
"build:remote": "cross-env MODE=remote ENABLE_POLYMER_EDITOR=true run-s prebuild build:react postbuild",
"build:standalone": "cross-env MODE=standalone ENABLE_POLYMER_EDITOR=true run-s prebuild build:react postbuild",
"build:remote": "cross-env MODE=remote ENABLE_POLYMER_EDITOR=false run-s prebuild build:react postbuild",
"build:standalone": "cross-env MODE=standalone ENABLE_POLYMER_EDITOR=false run-s prebuild build:react postbuild",
"build:react": "react-app-rewired build",
"build:react:analyze": "react-app-rewired build --analyze",
"build": "run-s build:standalone build:remote",
"build:standalone:analyze": "cross-env MODE=standalone ENABLE_POLYMER_EDITOR=true run-s prebuild build:react:analyze postbuild",
"build:remote:analyze": "cross-env MODE=remote ENABLE_POLYMER_EDITOR=true run-s prebuild build:react:analyze postbuild",
"build:standalone:analyze": "cross-env MODE=standalone ENABLE_POLYMER_EDITOR=false run-s prebuild build:react:analyze postbuild",
"build:remote:analyze": "cross-env MODE=remote ENABLE_POLYMER_EDITOR=false run-s prebuild build:react:analyze postbuild",
"test": "run-s test:prettier test:stylelint test:eslint test:unit",
"test:eslint": "eslint . --ext .ts,.js,.jsx,.tsx",
"test:unit": "react-app-rewired test --passWithNoTests",
Expand Down
2 changes: 1 addition & 1 deletion packages/ketcher-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ketcher-core",
"version": "2.6.0",
"version": "2.6.1",
"description": "Web-based molecule sketcher",
"license": "Apache-2.0",
"homepage": "http://lifescience.opensource.epam.com/ketcher",
Expand Down
2 changes: 1 addition & 1 deletion packages/ketcher-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ketcher-react",
"version": "2.6.0",
"version": "2.6.1",
"description": "Web-based molecule sketcher",
"license": "Apache-2.0",
"homepage": "http://lifescience.opensource.epam.com/ketcher",
Expand Down
2 changes: 1 addition & 1 deletion packages/ketcher-standalone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ketcher-standalone",
"version": "2.6.0",
"version": "2.6.1",
"description": "Web-based molecule sketcher",
"license": "Apache-2.0",
"homepage": "http://lifescience.opensource.epam.com/ketcher",
Expand Down

0 comments on commit fb04543

Please sign in to comment.