-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'edge' of https://github.com/Opentrons/opentrons into ap…
…p_command-annotations
- Loading branch information
Showing
5,102 changed files
with
622,620 additions
and
166,524 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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 @@ | ||
odd-resource-analysis/dist/* binary |
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,13 @@ | ||
.DS_Store | ||
.idea | ||
*.log | ||
tmp/ | ||
|
||
*.tern-port | ||
node_modules/ | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
*.tsbuildinfo | ||
.npm | ||
.eslintcache |
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,2 @@ | ||
dist/ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use strict' | ||
|
||
module.exports = { | ||
printWidth: 80, // default | ||
tabWidth: 2, // default | ||
useTabs: false, // default | ||
semi: false, | ||
singleQuote: true, | ||
jsxSingleQuote: false, // default | ||
trailingComma: 'es5', | ||
bracketSpacing: true, // default | ||
jsxBracketSameLine: false, // default | ||
arrowParens: 'avoid', // default | ||
endOfLine: 'lf', | ||
} |
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,27 @@ | ||
name: 'ODD Memory Usage Analysis' | ||
description: >- | ||
Analyzes memory usage trends across ODD versions using Mixpanel data. | ||
Note that only processes with positive correlation or explicitly whitelisted processes are shown. | ||
inputs: | ||
mixpanel-user: | ||
description: 'Mixpanel service account username' | ||
required: true | ||
mixpanel-secret: | ||
description: 'Mixpanel service account password' | ||
required: true | ||
mixpanel-project-id: | ||
description: 'Mixpanel project ID' | ||
required: true | ||
previous-version-count: | ||
description: 'Number of previous versions to analyze' | ||
required: false | ||
default: '2' | ||
|
||
outputs: | ||
analysis-results: | ||
description: 'JSON string containing the complete analysis results' | ||
|
||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' |
Oops, something went wrong.