diff --git a/gulpfile.js b/gulpfile.js index c32e229f8f..8347a147db 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -52,7 +52,8 @@ task('syncLibVersions', async function () { 'remix-tests', 'remix-url-resolver', 'remix-ws-templates', - 'remixd' + 'remixd', + 'ghaction-helper' ] libs.forEach(lib => { diff --git a/lerna.json b/lerna.json index 708004a98a..b3891e8f1e 100644 --- a/lerna.json +++ b/lerna.json @@ -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": { diff --git a/package.json b/package.json index 39d01427fb..b9bb6e82cd 100644 --- a/package.json +++ b/package.json @@ -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",