Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ursm committed Jul 29, 2020
1 parent 73ab1c6 commit c2ee6ec
Show file tree
Hide file tree
Showing 9 changed files with 1,109 additions and 1,213 deletions.
2 changes: 1 addition & 1 deletion frontend/app/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import loadInitializers from 'ember-load-initializers';
import config from './config/environment';
import config from 'sparqlist/config/environment';

export default class App extends Application {
modulePrefix = config.modulePrefix;
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/router.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
import config from 'sparqlist/config/environment';

export default class Router extends EmberRouter {
location = config.locationType;
Expand Down
2 changes: 1 addition & 1 deletion frontend/config/ember-cli-update.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
{
"name": "ember-cli",
"version": "3.19.0",
"version": "3.20.0",
"blueprints": [
{
"name": "app",
Expand Down
2 changes: 1 addition & 1 deletion frontend/config/targets.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const browsers = [
'last 1 Safari versions'
];

const isCI = !!process.env.CI;
const isCI = Boolean(process.env.CI);
const isProduction = process.env.EMBER_ENV === 'production';

if (isCI || isProduction) {
Expand Down
1,866 changes: 914 additions & 952 deletions frontend/package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@
"@ember/optional-features": "^1.3.0",
"@ember/render-modifiers": "^1.0.2",
"@fortawesome/ember-fontawesome": "^0.2.1",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@glimmer/component": "^1.0.0",
"@glimmer/tracking": "^1.0.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@glimmer/component": "^1.0.1",
"@glimmer/tracking": "^1.0.1",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.5.0",
"broccoli-asset-rev": "^3.0.0",
"ember-auto-import": "^1.6.0",
"ember-cli": "~3.19.0",
"ember-cli": "~3.20.0",
"ember-cli-app-version": "^3.2.0",
"ember-cli-babel": "^7.20.5",
"ember-cli-babel": "^7.21.0",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-htmlbars": "^5.2.0",
"ember-cli-inject-live-reload": "^2.0.2",
Expand All @@ -41,8 +41,8 @@
"ember-cli-uglify": "^3.0.0",
"ember-composable-helpers": "^4.2.2",
"ember-concurrency": "^1.2.1",
"ember-concurrency-decorators": "^2.0.0",
"ember-data": "~3.19.0",
"ember-concurrency-decorators": "^2.0.1",
"ember-data": "~3.20.0",
"ember-decorators": "^6.1.1",
"ember-event-helpers": "^0.1.1",
"ember-export-application-global": "^2.0.1",
Expand All @@ -53,11 +53,11 @@
"ember-qunit": "^4.6.0",
"ember-resolver": "^8.0.0",
"ember-simple-auth": "^3.1.0-beta.0",
"ember-source": "~3.19.0",
"ember-template-lint": "^2.9.0",
"ember-source": "~3.20.2",
"ember-template-lint": "^2.9.1",
"ember-truth-helpers": "^2.1.0",
"eslint": "^7.4.0",
"eslint-plugin-ember": "^8.9.1",
"eslint": "^7.5.0",
"eslint-plugin-ember": "^8.9.2",
"eslint-plugin-node": "^11.1.0",
"ivy-codemirror": "github:IvyApp/ivy-codemirror",
"jquery": "^3.5.1",
Expand Down
4 changes: 2 additions & 2 deletions frontend/tests/test-helper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Application from '../app';
import config from '../config/environment';
import Application from 'sparqlist/app';
import config from 'sparqlist/config/environment';
import { setApplication } from '@ember/test-helpers';
import { start } from 'ember-qunit';

Expand Down

0 comments on commit c2ee6ec

Please sign in to comment.