removed PHP dependency, fixed scanlines for Chrome

This commit is contained in:
Joshua Seigler 2017-02-13 09:36:48 -05:00
parent 53786df51b
commit 5ec1e31ee7
5 changed files with 26 additions and 23 deletions

View file

@ -84,10 +84,9 @@ module.exports = function (grunt) {
}
},
php: {
watch: {
connect: {
server: {
options: {
hostname: '0.0.0.0',
port: 1337,
base: 'build'
}
@ -103,13 +102,13 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-php');
grunt.loadNpmTasks('grunt-contrib-connect');
// Default task(s).
grunt.registerTask(
'default',
'Default is to build everything, then watch for changes',
['build', 'php:watch', 'watch']
['build', 'connect', 'watch']
);
grunt.registerTask(
'stylesheets',