-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGES: major bump upgrade [email protected] (#844)
Co-authored-by: Yuta Kaneda <[email protected]> Co-authored-by: Ibuki Miyagami <[email protected]> Co-authored-by: Haruka Kawamura <[email protected]> Co-authored-by: y-oksaku <[email protected]> Co-authored-by: ibu1224 <[email protected]> Co-authored-by: Ibuki Miyagami <[email protected]> Co-authored-by: Keisuke Kumada <[email protected]> Co-authored-by: imiyagam <[email protected]> Co-authored-by: Ibuki <[email protected]>
- Loading branch information
1 parent
ae0ec8e
commit f1f68c5
Showing
455 changed files
with
69,584 additions
and
40,504 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
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,25 @@ | ||
# unconventional js | ||
/blueprints/*/files/ | ||
/vendor/ | ||
|
||
# compiled output | ||
/dist/ | ||
/tmp/ | ||
|
||
# dependencies | ||
/bower_components/ | ||
/node_modules/ | ||
|
||
# misc | ||
/coverage/ | ||
!.* | ||
.eslintcache | ||
.lint-todo/ | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ | ||
/bower.json.ember-try | ||
/npm-shrinkwrap.json.ember-try | ||
/package.json.ember-try | ||
/package-lock.json.ember-try | ||
/yarn.lock.ember-try |
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,5 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
singleQuote: true | ||
}; |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
import Application from '@ember/application'; | ||
import loadInitializers from 'ember-load-initializers'; | ||
import { run } from '@ember/runloop'; | ||
import { _backburner } from '@ember/runloop'; | ||
import Resolver from 'ember-resolver'; | ||
import config from './config/environment'; | ||
import config from 'screwdriver-ui/config/environment'; | ||
|
||
const App = Application.extend({ | ||
modulePrefix: config.modulePrefix, | ||
podModulePrefix: config.podModulePrefix, | ||
Resolver | ||
}); | ||
export default class App extends Application { | ||
modulePrefix = config.modulePrefix; | ||
|
||
podModulePrefix = config.podModulePrefix; | ||
|
||
Resolver = Resolver; | ||
} | ||
|
||
loadInitializers(App, config.modulePrefix); | ||
|
||
if (config.environment === 'development') { | ||
run.backburner.DEBUG = true; | ||
_backburner.DEBUG = true; | ||
} | ||
|
||
export default App; |
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 |
---|---|---|
@@ -1,21 +1,20 @@ | ||
{{app-header | ||
currentUrl=currentUrl | ||
scmContexts=scmContexts | ||
session=session | ||
showCreatePipeline=showCreatePipeline | ||
authenticate=(action "authenticate") | ||
onInvalidate=(action "invalidateSession") | ||
searchPipelines=(action "search") | ||
}} | ||
{{nav-banner}} | ||
<AppHeader | ||
@currentUrl={{this.currentUrl}} | ||
@scmContexts={{this.scmContexts}} | ||
@session={{this.session}} | ||
@showCreatePipeline={{this.showCreatePipeline}} | ||
@authenticate={{action "authenticate"}} | ||
@onInvalidate={{action "invalidateSession"}} | ||
@searchPipelines={{action "search"}} | ||
/> | ||
<NavBanner /> | ||
|
||
<div id="appContainer" class="container-fluid"> | ||
{{outlet}} | ||
</div> | ||
|
||
{{#if showCreatePipeline}} | ||
{{create-pipeline | ||
showCreatePipeline=showCreatePipeline}} | ||
{{#if this.showCreatePipeline}} | ||
<CreatePipeline @showCreatePipeline={{this.showCreatePipeline}} /> | ||
{{/if}} | ||
|
||
{{feedback}} | ||
{{this.feedback}} |
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import DS from 'ember-data'; | ||
const { Model } = DS; | ||
import Model, { attr } from '@ember-data/model'; | ||
|
||
export default Model.extend({ | ||
jobId: DS.attr('number'), | ||
builds: DS.attr() | ||
jobId: attr('number'), | ||
builds: attr() | ||
}); |
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.