-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AppKernel, ServiceContainer, eslinter fixes, m2mclient, report player fixes and some minor issues
- Loading branch information
Showing
194 changed files
with
3,644 additions
and
3,422 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
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,8 +1,8 @@ | ||
module.exports = { | ||
dev: { | ||
tasks: [['run:webpack', 'sass:dev','nodemon'], 'watch'], | ||
options: { | ||
logConcurrentOutput: true | ||
} | ||
} | ||
}; | ||
dev: { | ||
tasks: [['run:webpack', 'sass:dev', 'nodemon'], 'watch'], | ||
options: { | ||
logConcurrentOutput: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
//Runs express script and sets default port to 3000 if environment is not set. | ||
// Runs express script and sets default port to 3000 if environment is not set. | ||
module.exports = { | ||
debug: { | ||
options: { | ||
delay: 500, | ||
ignore: [ | ||
'dist/js/*.js', | ||
'sessions/**', | ||
'node_modules/**', | ||
'grunt/**', | ||
'Gruntfile.js', | ||
] | ||
debug: { | ||
script: 'src/backend/index.js', | ||
options: { | ||
delay: 500, | ||
ignore: [ | ||
'dist/js/*.js', | ||
'sessions/**', | ||
'node_modules/**', | ||
'grunt/**', | ||
'Gruntfile.js' | ||
] | ||
} | ||
} | ||
} | ||
}; | ||
} |
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,5 +1,5 @@ | ||
module.exports = { | ||
webpack: { | ||
args: ['node_modules/.bin/webpack'], | ||
args: ['node_modules/.bin/webpack'] | ||
} | ||
}; | ||
} |
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,24 +1,24 @@ | ||
const sass = require('dart-sass'); | ||
const sass = require('dart-sass') | ||
|
||
module.exports = { | ||
dev: { | ||
options: { | ||
implementation: sass, | ||
style: 'expanded', | ||
compass: true | ||
dev: { | ||
options: { | ||
implementation: sass, | ||
style: 'expanded', | ||
compass: true | ||
}, | ||
files: { | ||
'public/styles/css/site.min.css': 'public/styles/site.sass' | ||
} | ||
}, | ||
files: { | ||
'public/styles/css/site.min.css': 'public/styles/site.sass', | ||
dist: { | ||
options: { | ||
implementation: sass, | ||
style: 'compressed', | ||
compass: true | ||
}, | ||
files: { | ||
'public/styles/css/site.min.css': 'public/styles/site.sass' | ||
} | ||
} | ||
}, | ||
dist: { | ||
options: { | ||
implementation: sass, | ||
style: 'compressed', | ||
compass: true | ||
}, | ||
files: { | ||
'public/styles/css/site.min.css': 'public/styles/site.sass', | ||
} | ||
} | ||
}; | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.