$ ~/build-turbo.sh && localturbo run build --skip-infer --force && for i in {1..20}; do localturbo run build --skip-infer --output-logs=new-only; done
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
id: block-packages-imports | |
language: TypeScript | |
severity: error | |
message: Do not import from packages directly. Use `@api/package-name`. | |
rule: | |
kind: import_statement | |
has: | |
kind: string | |
has: |
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
interface RunSummary { | |
id: string, | |
turboVersion: string, | |
globalHashSummary: globalHashSummary, | |
packages: string[], | |
executionSummary: executionSummary, | |
tasks: taskSummary[], | |
} | |
interface expandedInputs { |
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
import Component from '@ember/component'; | |
export default class MyComponent extends Component { | |
tagName=''; | |
didInsertElement() { | |
super.didInsertElement(...arguments); | |
console.log(this.element); | |
} | |
} |
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
import Component from '@glimmer/component'; | |
import { inject as service } from '@ember/service' | |
export default class extends Component { | |
@service foo; | |
get internalComponentProp() { | |
return this.foo.intermediateProp; | |
} | |
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
import Component from '@glimmer/component'; | |
export default class extends Component { | |
} |
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
import Component from '@ember/component'; | |
export default class extends Component { | |
didUpdateAttrs() { | |
} | |
} |
NewerOlder