Skip to content

Commit e0b201f

Browse files
committed
finalize
1 parent 5809149 commit e0b201f

File tree

5 files changed

+68
-124
lines changed

5 files changed

+68
-124
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install: yarn
2525
script:
2626
- touch .env
2727
- node scripts/l10n.js generate
28-
- yarn lint:scss
28+
- yarn lint
2929
- COVERAGE=true yarn test
3030
- ROOT_URL=open-event-frontend ember build -prod
3131
- bash scripts/test_fastboot.sh
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
<div class="sixteen wide column">
2-
<Tables::Default @columns={{columns}} @rows={{model.eventInvoices.data}} @currentPage={{page}} @pageSize={{per_page}} @searchQuery={{search}} @sortBy={{sort_by}} @sortDir={{sort_dir}} @metaData={{model.eventInvoices.meta}} @filterOptions={{filterOptions}} @widthConstraint="eq-container" @resizeMode="fluid" @fillMode="equal-column" />
2+
<Tables::Default
3+
@columns={{columns}}
4+
@rows={{model.eventInvoices.data}}
5+
@currentPage={{page}}
6+
@pageSize={{per_page}}
7+
@searchQuery={{search}}
8+
@sortBy={{sort_by}}
9+
@sortDir={{sort_dir}}
10+
@metaData={{model.eventInvoices.meta}}
11+
@filterOptions={{filterOptions}}
12+
@widthConstraint="eq-container"
13+
@resizeMode="fluid"
14+
@fillMode="equal-column" />
315
</div>

app/templates/account/password.hbs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
<Account::PasswordSection @changePassword={{action "changePassword"}} @passwordCurrent={{passwordCurrent}} @passwordNew={{passwordNew}} @passwordRepeat={{passwordRepeat}} @isLoading={{isLoading}} />
1+
<Account::PasswordSection
2+
@changePassword={{action "changePassword"}}
3+
@passwordCurrent={{passwordCurrent}}
4+
@passwordNew={{passwordNew}}
5+
@passwordRepeat={{passwordRepeat}}
6+
@isLoading={{isLoading}} />

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
"start": "ember server",
1515
"test": "ember test",
1616
"exam": "ember exam --launch=chrome --random",
17+
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
1718
"lint:js": "eslint --fix app ember-cli-build.js testem.js tests",
1819
"lint:scss": "sass-lint -c .sass-lint.yml --verbose",
20+
"lint:hbs": "ember-template-lint .",
1921
"postinstall": "node -e \"try { require('fs').symlinkSync(require('path').resolve('node_modules/@bower_components'), 'bower_components', 'junction') } catch (e) { }\""
2022
},
2123
"pre-commit": {
2224
"run": [
23-
"lint:js",
24-
"lint:scss"
25+
"lint"
2526
]
2627
},
2728
"devDependencies": {
@@ -132,6 +133,7 @@
132133
"loader.js": "^4.7.0",
133134
"lodash-es": "^4.17.15",
134135
"mini-css-extract-plugin": "^0.9.0",
136+
"npm-run-all": "^4.1.5",
135137
"object-to-formdata": "^3.0.4",
136138
"paypal-checkout": "^4.0.312",
137139
"pre-commit": "^1.2.2",

0 commit comments

Comments
 (0)