Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Bump follow-redirects from 1.14.7 to 1.14.8 #300

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ TRANSPILE_DEPS=false
DISABLE_TERSER=true
# TRANSPILE_DEPS=false
# DISABLE_TERSER=true
REACT_APP_COMPILER_URL=https://imjsdocumentdeveussa01.z13.web.core.windows.net/sandbox/compiler
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @Josh-Schifter @BaoTon @williamkbentley
* @Josh-Schifter @BaoTon @williamkbentley @StefanRetief
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ yarn-error.log*

# generated
/src/**/*.d.ts
/src/Components/SampleEditor/Modules.ts
/src/Components/SampleEditor/Modules.json
/public/editor
7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,18 @@ Using iModel.js in your UI component is relatively easy. To render the viewport

```ts
import { Viewer } from "@bentley/itwin-viewer-react";
import { AuthorizationClient, default3DSandboxUi, } from "@itwinjs-sandbox";
import { AuthorizationClient, default3DSandboxUi, } from "@itwin/sandbox";
export const MySampleApp: FunctionComponent = () => {
const sampleIModelInfo = useSampleWidget("Sample Instructions");

/** The sample's render method */
public render() {
return (
<Viewer
contextId={sampleIModelInfo.contextId}
iTwinId={sampleIModelInfo.contextId}
iModelId={sampleIModelInfo.iModelId}
authConfig={{ oidcClient: AuthorizationClient.oidcClient }}
authClient={AuthorizationClient.oidcClient}
enablePerformanceMonitors={true}
defaultUiConfig={default3DSandboxUi}
theme="dark"
/>
Expand Down
Loading