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

Clean up repository #97

Closed
wants to merge 20 commits into from
Closed
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
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"error",
"always"
],
"@typescript-eslint/no-unused-expressions": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-duplicate-enum-values": "warn",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "off"
}
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ lib/
coverage/
.env
.idea/

*.configStore/
dist/
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ Every change must be tested with proper unit tests.

### Build Instructions

See sub Readme files in typescript/packages, typescript/examples or python/ for more information about build instructions.
See Readme file for more information about build instructions.

> Note: It is a good idea to `npm install` after each `git pull` as dependencies may have changed.
### Making and Testing Changes

1. Make source code changes on a new Git branch
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright © 2023 Bentley Systems, Incorporated. All rights reserved.
Copyright © 2024 Bentley Systems, Incorporated. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Besides, a typescript web application example is available to show how to create

Reality data utils to upload and download results

- [Reality Data utils](./typescript/packages/reality-data-transfer/README.md)
- [Reality Data transfer utils](./typescript/packages/reality-data-transfer/README.md)

All the packages are available in python, except Reality Management

Expand All @@ -31,5 +31,5 @@ All the packages are available in python, except Reality Management

1. Clone repository (first time) with `git clone` or pull updates to the repository (subsequent times) with `git pull`
2. Install dependencies: `pnpm update` or `pnpm install`
3. Build source: `pnpm build`
4. Run unit tests : create a .env file based on template.env, then : `pnpm coverage`
3. Build source: `npm run build`
4. Run unit tests : create a .env file based on template.env, then : `npm run coverage`
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Fix contributing.md, readme.md and typescript dep version",
"packageName": "@itwin/reality-capture-analysis",
"email": "110406974+dbiguenet@users.noreply.github.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Update packages deps and update README",
"packageName": "@itwin/reality-capture-common",
"email": "110406974+dbiguenet@users.noreply.github.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Update packages deps and update README",
"packageName": "@itwin/reality-capture-conversion",
"email": "110406974+dbiguenet@users.noreply.github.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Update packages deps and update README",
"packageName": "@itwin/reality-capture-modeling",
"email": "110406974+dbiguenet@users.noreply.github.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Update typescript version",
"packageName": "@itwin/reality-data-client",
"email": "110406974+dbiguenet@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Update packages deps and update README",
"packageName": "@itwin/reality-data-transfer",
"email": "110406974+dbiguenet@users.noreply.github.com",
"dependentChangeType": "none"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"license": "MIT",
"devDependencies": {
"beachball": "^2.43.1"
"beachball": "^2.47.1"
},
"repository": {
"type": "git",
Expand Down
Loading
Loading