Skip to content

Commit b0cecf4

Browse files
committed
publishing all packages
1 parent 971ad3a commit b0cecf4

File tree

22 files changed

+27
-14
lines changed

22 files changed

+27
-14
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Build all JS
3838
run: pnpm run build
3939
- name: Publish non IDE packages to npm
40-
run: pnpm -r publish --no-git-checks
40+
run: pnpm -r publish --no-git-checks --filter=!packages/selenium-ide --access public
4141
env:
4242
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4343
- name: Install electron-builder dependencies

packages/browser-info/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/browser-info",
33
"version": "4.0.0",
4+
"private": false,
45
"description": "Get information about installed browsers",
56
"author": "Tomer <[email protected]>",
67
"homepage": "http://github.com/SeleniumHQ/selenium-ide",

packages/browser-info/src/sh.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ export async function sh(
3333
stderr = ''
3434
const cp = spawn(command, args, options)
3535

36-
cp.stdout.on('data', data => {
36+
cp.stdout.on('data', (data) => {
3737
stdout += data.toString()
3838
})
3939

40-
cp.stderr.on('data', data => {
40+
cp.stderr.on('data', (data) => {
4141
stderr += data.toString()
4242
})
4343

@@ -51,7 +51,7 @@ export async function sh(
5151
}
5252
})
5353

54-
cp.on('error', error => {
54+
cp.on('error', (error) => {
5555
reject(makeError(error.message, 1, stdout, stderr))
5656
})
5757

packages/code-export-csharp-commons/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/code-export-csharp-commons",
33
"version": "4.0.0-alpha.0",
4+
"private": false,
45
"description": "Commons for exporting Selenium IDE project contents to C#",
56
"repository": "https://github.com/SeleniumHQ/selenium-ide",
67
"keywords": [

packages/code-export-csharp-nunit/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/code-export-csharp-nunit",
33
"version": "4.0.0-alpha.0",
4+
"private": false,
45
"description": "Export Selenium IDE project contents to C# NUnit",
56
"repository": "https://github.com/SeleniumHQ/selenium-ide",
67
"keywords": [

packages/code-export-csharp-xunit/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/code-export-csharp-xunit",
33
"version": "4.0.0-alpha.0",
4+
"private": false,
45
"description": "Export Selenium IDE project contents to C# XUnit",
56
"repository": "https://github.com/SeleniumHQ/selenium-ide",
67
"keywords": [

packages/code-export-java-junit/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/code-export-java-junit",
33
"version": "4.0.0-alpha.0",
4+
"private": false,
45
"description": "Export Selenium IDE project contents to Java JUnit",
56
"repository": "https://github.com/SeleniumHQ/selenium-ide",
67
"keywords": [

packages/code-export-javascript-mocha/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/code-export-javascript-mocha",
33
"version": "4.0.0-alpha.1",
4+
"private": false,
45
"description": "Export Selenium IDE project contents to JavaScript Mocha",
56
"repository": "https://github.com/SeleniumHQ/selenium-ide",
67
"keywords": [

packages/code-export-python-pytest/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/code-export-python-pytest",
33
"version": "4.0.0-alpha.0",
4+
"private": false,
45
"description": "Export Selenium IDE project contents to Python pytest",
56
"repository": "https://github.com/SeleniumHQ/selenium-ide",
67
"keywords": [

packages/code-export-ruby-rspec/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@seleniumhq/code-export-ruby-rspec",
33
"version": "4.0.0-alpha.0",
4+
"private": false,
45
"description": "Export Selenium IDE project contents to Ruby RSpec",
56
"repository": "https://github.com/SeleniumHQ/selenium-ide",
67
"keywords": [

0 commit comments

Comments
 (0)