-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
19,248 additions
and
14,366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
apps/app/src/react/components/pages/homePage/deviceShorcut/DeviceShortcut.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import React from 'react' | ||
import { Mappings } from 'timeline-state-resolver-types' | ||
|
||
export const MappingsContext = React.createContext<Mappings>({} as Mappings) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
div.SnackbarContainer-root { | ||
.SnackbarItem-message { | ||
padding-top: 1em; | ||
p { | ||
margin: 0.25em; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,5 @@ | |
"tests/**" | ||
], | ||
"version": "0.12.0-alpha.5", | ||
"npmClient": "yarn", | ||
"useWorkspaces": true | ||
"npmClient": "yarn" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,18 +25,20 @@ | |
"lint:changed": "lerna exec --since head --include-dependents -- eslint . --ext .js,.jsx,.ts,.tsx", | ||
"build": "lerna run build", | ||
"build:binary": "lerna run build:binary", | ||
"build:shared": "lerna run build --stream --scope=@shared/*", | ||
"build:shared:changed": "lerna run build --stream --scope=@shared/* --since head --exclude-dependents --stream", | ||
"build:shared": "lerna run build --stream --scope='@shared/*'", | ||
"build:shared:changed": "lerna run build --stream --scope='@shared/*' --since head --exclude-dependents --stream", | ||
"start": "yarn && yarn build:shared && yarn dev:electron", | ||
"start:all": "yarn build:shared && lerna run dev --stream", | ||
"start:bridge": "yarn build:shared && yarn dev:bridge", | ||
"dev:electron": "lerna run dev --stream --scope=superconductor", | ||
"dev:bridge": "lerna run dev --stream --scope=tsr-bridge", | ||
"dev:electron": "lerna run dev --stream --scope='superconductor'", | ||
"dev:bridge": "lerna run dev --stream --scope='tsr-bridge'", | ||
"test": "lerna run test", | ||
"license-validate": "node scripts/license-check.js", | ||
"release:bump": "lerna version --force-publish --no-push", | ||
"release:prerelease": "lerna version prerelease --force-publish --no-push", | ||
"release:preminor": "lerna version preminor --force-publish --no-push" | ||
"release:preminor": "lerna version preminor --force-publish --no-push", | ||
"lint-staged": "cd $INIT_CWD && \"$PROJECT_CWD/node_modules/.bin/lint-staged\"", | ||
"eslint": "cd $INIT_CWD && \"$PROJECT_CWD/node_modules/.bin/eslint\"" | ||
}, | ||
"resolutions": { | ||
"prebuild-install": "^7.0.0", | ||
|
@@ -52,11 +54,12 @@ | |
"eslint-plugin-react": "^7.32.2", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"jest": "^29.5.0", | ||
"lerna": "^6.0.3", | ||
"lerna": "8.1.2", | ||
"nexe": "^4.0.0-rc.1", | ||
"rimraf": "^3.0.2", | ||
"ts-jest": "^29.0.5", | ||
"typescript": "^4.9.5" | ||
}, | ||
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json" | ||
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json", | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.