MAINT: Upgrade ember to 2.14 (#10)

This commit is contained in:
Matthew Ryan Dillon 2017-07-10 05:41:30 -07:00 committed by GitHub
parent d58b4e218c
commit 4c58b0c331
14 changed files with 84 additions and 62 deletions

View file

@ -1,9 +1,10 @@
/* jshint node: true */
/* eslint-env node */
'use strict';
module.exports = function(environment) {
var ENV = {
let ENV = {
modulePrefix: 'ccdb-web',
environment: environment,
environment,
rootURL: '/',
locationType: 'auto',
EmberENV: {

9
config/targets.js Normal file
View file

@ -0,0 +1,9 @@
/* eslint-env node */
module.exports = {
browsers: [
'ie 9',
'last 1 Chrome versions',
'last 1 Firefox versions',
'last 1 Safari versions'
]
};