Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Commit

Permalink
LU VAT increased. Added CZ reduced & BE parking
Browse files Browse the repository at this point in the history
  • Loading branch information
staaky committed Aug 20, 2015
1 parent a8a8b63 commit f1aed83
Show file tree
Hide file tree
Showing 17 changed files with 1,433 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
30 changes: 30 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = function(grunt) {

// Config
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

/* TODO: Move towards having only vatrates.json in 'src' and build
all other files from it, much easier to maintain */
copy: {
main: {
options: {
processContent: function (content, srcpath) {
return grunt.template.process(content);
}
},
files: [
{expand: true, cwd: 'src/', src: ['**'], dest: './'}
]
}
}
});

// Load plugins
grunt.loadNpmTasks('grunt-contrib-copy');

// Tasks
grunt.registerTask('default', [
'copy'
]);
};
6 changes: 4 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vatrates",
"description": "Up-to-date European VAT Rates",
"version": "1.1.0",
"version": "1.2.0",
"keywords": [
"VAT",
"rates",
Expand All @@ -10,11 +10,13 @@
],
"homepage": "http://github.com/staaky/vatrates",
"main": [
"vatrates.js"
"./vatrates.js"
],
"ignore": [
"node_modules",
"bower_components",
"src",
"tests",
"/.*",
"bower.json",
"Gruntfile.js",
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vatrates",
"title": "VATRates",
"version": "1.1.0",
"version": "1.2.0",
"description": "Up-to-date European VAT Rates",
"keywords": [
"VAT",
Expand All @@ -13,8 +13,8 @@
"bugs": "http://github.com/staaky/vatrates/issues",
"main": "./vatrates.js",
"repository": {
"type" : "git",
"url" : "http://github.com/staaky/vatrates.git"
"type": "git",
"url": "http://github.com/staaky/vatrates.git"
},
"author": {
"name": "Nick Stakenburg",
Expand All @@ -25,5 +25,9 @@
"type": "MIT",
"url": "http://choosealicense.com/licenses/mit/"
}
]
],
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-copy": "^0.8.1"
}
}
Loading

0 comments on commit f1aed83

Please sign in to comment.