Add publish dev command

pull/3302/head
ioedeveloper 2 years ago committed by Aniket
parent b2ec4a9330
commit 484aa46fb9
  1. 3
      gulpfile.js
  2. 3
      lerna.json
  3. 1
      package.json

@ -52,7 +52,8 @@ task('syncLibVersions', async function () {
'remix-tests',
'remix-url-resolver',
'remix-ws-templates',
'remixd'
'remixd',
'ghaction-helper'
]
libs.forEach(lib => {

@ -8,7 +8,8 @@
"dist/libs/remix-solidity",
"dist/libs/remix-tests",
"dist/libs/remix-url-resolver",
"dist/libs/remix-ws-templates"
"dist/libs/remix-ws-templates",
"dist/libs/ghaction-helper"
],
"version": "independent",
"command": {

@ -49,6 +49,7 @@
"build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remix-ws-templates,remixd,ghaction-helper",
"test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-tests,remix-url-resolver,remixd",
"publish:libs": "yarn run build:libs && lerna publish --skip-git && yarn run bumpVersion:libs",
"publishDev:libs": "yarn run build:libs && lerna publish --npm-tag alpha --skip-git && yarn run bumpVersion:libs",
"build:e2e": "node apps/remix-ide-e2e/src/buildGroupTests.js && tsc -p apps/remix-ide-e2e/tsconfig.e2e.json",
"babel": "babel",
"watch:e2e": "nodemon",

Loading…
Cancel
Save