Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog and build script #171

Merged
merged 4 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ lib
node_modules
/**/playwright-report
/**/test-results
junit-results.xml
2 changes: 1 addition & 1 deletion app/e2e-tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default defineConfig({
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [["list"], ["html", { open: "never" }]],
reporter: [["list"], ["html", { open: "never" }], ["junit", { outputFile: "junit-results.xml" }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start:qa": "cross-env IMJS_URL_PREFIX=qa- run-p --silent start:backend start:frontend",
"start:web": "cross-env DEPLOYMENT_TYPE=web npm run start:frontend",
"start:backend": "npm run start --prefix ./app/backend",
"build": "npm run build:common && npm run build:components && run-p build:backend build:frontend",
"build": "npm run build:common && npm run build:components && npm run build:frontend",
"build:backend": "npm run build --prefix ./app/backend",
"build:components": "npm run build --prefix ./presentation-rules-editor-react",
"build:frontend": "npm run build --prefix ./app/frontend",
Expand Down
7 changes: 5 additions & 2 deletions presentation-rules-editor-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- `@itwin` peer dependencies have been upgraded to `^3.6.2 || ^4.0.0`.
- `monaco-editor` peer dependency has been upgraded to `^0.40.0`.
- `@itwin/itwinui-react` peer dependency has been upgraded to `^3.0.0`.
- `@itwin/presentation-components` peer dependency has been upgraded to `^5.0.0`.
- All other `@itwin` peer dependencies have been upgraded to `^4.0.0`.
- `react` and `react-dom` peer dependencies have been upgraded to `^18.0.0`.
- `monaco-editor` peer dependency has been upgraded to `^0.52.0`.
- Update package dependencies.

### Added
Expand Down
Loading