Skip to content

Commit

Permalink
Initial commit - v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
denissdubinin committed Sep 8, 2018
1 parent 7265a8b commit e9ffa23
Show file tree
Hide file tree
Showing 10 changed files with 550 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package-lock.json
node_modules
38 changes: 38 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
module.exports = function (grunt) {
'use strict';

grunt.initConfig({

pkg: grunt.file.readJSON('package.json'),
banner: '/*! Javascript Sudoku v<%= pkg.version %> by Deniss Dubinin - ' +
'https://github.com/denissdubinin/Javascript-Sudoku - Licensed MIT */\n',
uglify: {
options: {
banner: '<%= banner %>'
},
dist: {
files: {
'dist/sudoku.min.js': 'src/sudoku.js'
}
}
},
sass: {
options: {
noCache: true,
style: 'compressed',
banner: '<%= banner %>'
},
dist: {
files: {
'dist/sudoku.min.css': 'src/sudoku.scss'
}
}
}
});

grunt.loadNpmTasks('grunt-contrib-uglify-es');
grunt.loadNpmTasks('grunt-contrib-sass');

grunt.registerTask('styles', ['sass']);
grunt.registerTask('compile', ['uglify', 'sass']);
};
4 changes: 4 additions & 0 deletions dist/sudoku.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/sudoku.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/sudoku.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "javascript-sudoku-game",
"description": "Sudoku game on Javascript (jQuery)",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/denissdubinin/Javascript-Sudoku.git"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-contrib-sass": "^0.7.3",
"grunt-contrib-uglify-es": "^3.3.0"
}
}
Loading

0 comments on commit e9ffa23

Please sign in to comment.