Skip to content

Commit

Permalink
increment versions and fix some bad type refs
Browse files Browse the repository at this point in the history
  • Loading branch information
toddtarsi committed Apr 5, 2024
1 parent ae1f9ad commit 42bd43c
Show file tree
Hide file tree
Showing 19 changed files with 57 additions and 57 deletions.
4 changes: 2 additions & 2 deletions packages/code-export-csharp-commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/code-export-csharp-commons",
"version": "4.0.2",
"version": "4.0.3",
"private": false,
"description": "Commons for exporting Selenium IDE project contents to C#",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
Expand All @@ -18,7 +18,7 @@
"watch": "tsc --watch"
},
"dependencies": {
"side-code-export": "^4.0.2"
"side-code-export": "^4.0.4"
},
"devDependencies": {
"@seleniumhq/side-model": "^4.0.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/code-export-csharp-commons/src/location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

import { codeExport as exporter } from 'side-code-export'
import { LocationEmitters } from 'side-code-export/src/code-export/emit'
import { LocationEmitters } from 'side-code-export/dist/code-export/emit'

const emitters: LocationEmitters = {
id: emitId,
Expand Down
4 changes: 2 additions & 2 deletions packages/code-export-csharp-nunit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/code-export-csharp-nunit",
"version": "4.0.2",
"version": "4.0.3",
"private": false,
"description": "Export Selenium IDE project contents to C# NUnit",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
Expand All @@ -19,7 +19,7 @@
"types": "dist/index.d.ts",
"dependencies": {
"@seleniumhq/code-export-csharp-commons": "^4.0.1",
"side-code-export": "^4.0.2"
"side-code-export": "^4.0.4"
},
"gitHead": "f58e327e7616e23a3e926e4b80cf9952164e5744"
}
4 changes: 2 additions & 2 deletions packages/code-export-csharp-xunit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/code-export-csharp-xunit",
"version": "4.0.2",
"version": "4.0.3",
"private": false,
"description": "Export Selenium IDE project contents to C# XUnit",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
Expand All @@ -19,7 +19,7 @@
"types": "dist/index.d.ts",
"dependencies": {
"@seleniumhq/code-export-csharp-commons": "^4.0.1",
"side-code-export": "^4.0.2"
"side-code-export": "^4.0.4"
},
"devDependencies": {
"@seleniumhq/side-model": "^4.0.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/code-export-java-junit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/code-export-java-junit",
"version": "4.0.2",
"version": "4.0.3",
"private": false,
"description": "Export Selenium IDE project contents to Java JUnit",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
Expand All @@ -17,7 +17,7 @@
},
"main": "dist/index.js",
"dependencies": {
"side-code-export": "^4.0.2"
"side-code-export": "^4.0.4"
},
"devDependencies": {
"@seleniumhq/side-model": "^4.0.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/code-export-javascript-mocha/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/code-export-javascript-mocha",
"version": "4.0.2",
"version": "4.0.3",
"private": false,
"description": "Export Selenium IDE project contents to JavaScript Mocha",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
Expand All @@ -17,7 +17,7 @@
},
"main": "dist/index.js",
"dependencies": {
"side-code-export": "^4.0.2"
"side-code-export": "^4.0.4"
},
"devDependencies": {
"@seleniumhq/side-model": "^4.0.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/code-export-python-pytest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/code-export-python-pytest",
"version": "4.0.2",
"version": "4.0.3",
"private": false,
"description": "Export Selenium IDE project contents to Python pytest",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
Expand All @@ -17,7 +17,7 @@
},
"main": "dist/index.js",
"dependencies": {
"side-code-export": "^4.0.2"
"side-code-export": "^4.0.4"
},
"devDependencies": {
"@seleniumhq/side-model": "^4.0.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/code-export-ruby-rspec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/code-export-ruby-rspec",
"version": "4.0.2",
"version": "4.0.3",
"private": false,
"description": "Export Selenium IDE project contents to Ruby RSpec",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
Expand All @@ -17,7 +17,7 @@
},
"main": "dist/index.js",
"dependencies": {
"side-code-export": "^4.0.2"
"side-code-export": "^4.0.4"
},
"devDependencies": {
"@seleniumhq/side-model": "^4.0.1"
Expand Down
18 changes: 9 additions & 9 deletions packages/selenium-ide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,17 +117,17 @@
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.13",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@seleniumhq/code-export-csharp-nunit": "^4.0.2",
"@seleniumhq/code-export-csharp-xunit": "^4.0.2",
"@seleniumhq/code-export-java-junit": "^4.0.2",
"@seleniumhq/code-export-javascript-mocha": "^4.0.2",
"@seleniumhq/code-export-python-pytest": "^4.0.2",
"@seleniumhq/code-export-ruby-rspec": "^4.0.2",
"@seleniumhq/code-export-csharp-nunit": "^4.0.3",
"@seleniumhq/code-export-csharp-xunit": "^4.0.3",
"@seleniumhq/code-export-java-junit": "^4.0.3",
"@seleniumhq/code-export-javascript-mocha": "^4.0.3",
"@seleniumhq/code-export-python-pytest": "^4.0.3",
"@seleniumhq/code-export-ruby-rspec": "^4.0.3",
"@seleniumhq/get-driver": "^4.0.1",
"@seleniumhq/side-api": "^4.0.5",
"@seleniumhq/side-api": "^4.0.6",
"@seleniumhq/side-commons": "^4.0.1",
"@seleniumhq/side-model": "^4.0.1",
"@seleniumhq/side-runtime": "^4.0.4",
"@seleniumhq/side-runtime": "^4.0.5",
"dnd-core": "^16.0.1",
"electron-chromedriver": "^28.0.0",
"electron-log": "^5.1.0",
Expand All @@ -143,7 +143,7 @@
"react-resizable-panels": "^1.0.8",
"scroll-into-view-if-needed": "^3.0.10",
"selenium-webdriver": "^4.16.0",
"side-code-export": "^4.0.2",
"side-code-export": "^4.0.4",
"v8-compile-cache": "^2.3.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { TestShape } from '@seleniumhq/side-model'
import React from 'react'
import SuiteViewerEntry from './Entry'
import { SIDEMainProps } from 'browser/components/types'
import { loadingID } from '@seleniumhq/side-api/src/constants/loadingID'
import { loadingID } from '@seleniumhq/side-api/dist/constants/loadingID'

export interface CurrentSuiteTestListProps {
session: CoreSessionData
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ArgNames } from '@seleniumhq/side-model/src/ArgTypes'
import { ArgNames } from '@seleniumhq/side-model/dist/ArgTypes'
import React, { FC } from 'react'
import CommandLocatorField from './LocatorField'
import CommandTextField from './TextField'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
import clone from 'lodash/fp/clone'
import merge from 'lodash/fp/merge'
import BaseController from '../Base'
import { loadingID } from '@seleniumhq/side-api/src/constants/loadingID'
import { loadingID } from '@seleniumhq/side-api/dist/constants/loadingID'
import getCore from 'main/api/helpers/getCore'

const queue = (op: () => void) => setTimeout(op, 0)
Expand Down
4 changes: 2 additions & 2 deletions packages/side-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/side-api",
"version": "4.0.5",
"version": "4.0.6",
"private": false,
"description": "Selenium IDE API command shapes and such",
"author": "Todd Tarsi <[email protected]>",
Expand All @@ -23,7 +23,7 @@
"@seleniumhq/browser-info": "^4.0.1",
"@seleniumhq/get-driver": "^4.0.1",
"@seleniumhq/side-model": "^4.0.1",
"@seleniumhq/side-runtime": "^4.0.4",
"@seleniumhq/side-runtime": "^4.0.5",
"lodash": "^4.17.21"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/side-code-export/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "side-code-export",
"version": "4.0.3",
"version": "4.0.4",
"description": "Utils for code export from Selenium IDE",
"repository": "https://github.com/SeleniumHQ/selenium-ide",
"keywords": [
Expand All @@ -21,7 +21,7 @@
"types": "dist/index.d.ts",
"dependencies": {
"@seleniumhq/side-model": "^4.0.1",
"@seleniumhq/side-runtime": "^4.0.4",
"@seleniumhq/side-runtime": "^4.0.5",
"commander": "^9.4.0"
},
"gitHead": "f58e327e7616e23a3e926e4b80cf9952164e5744"
Expand Down
4 changes: 2 additions & 2 deletions packages/side-example-suite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"watch": "tsc --watch"
},
"dependencies": {
"side-code-export": "^4.0.2",
"side-code-export": "^4.0.4",
"@seleniumhq/code-export-python-pytest": "^4.0.1"
},
"devDependencies": {
"@seleniumhq/side-api": "^4.0.4"
"@seleniumhq/side-api": "^4.0.6"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/side-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"license": "Apache-2.0",
"dependencies": {
"@seleniumhq/side-model": "^4.0.1",
"@seleniumhq/side-runtime": "^4.0.4",
"@seleniumhq/side-runtime": "^4.0.5",
"commander": "^11.0.0",
"glob": "^10.3.1",
"jest": "^29.6.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/side-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seleniumhq/side-runtime",
"version": "4.0.4",
"version": "4.0.5",
"private": false,
"description": "Selenium IDE playback and execution",
"author": "Tomer <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/side-runtime/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CommandShape, ProjectShape } from '@seleniumhq/side-model'
import { CommandType } from '@seleniumhq/side-model/src/Commands'
import { CommandType } from '@seleniumhq/side-model/dist/Commands'
import { Fn } from '@seleniumhq/side-commons/dist/types'
import WebDriverExecutor, { WebDriverExecutorHooks } from './webdriver'

Expand Down
Loading

0 comments on commit 42bd43c

Please sign in to comment.