Skip to content

Commit 0716cd2

Browse files
committed
formatting
1 parent d5db8e3 commit 0716cd2

31 files changed

Lines changed: 5093 additions & 5106 deletions

Gruntfile.js

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
module.exports = function(grunt) {
23

34
grunt.initConfig({
@@ -44,7 +45,7 @@ module.exports = function(grunt) {
4445
},
4546
},
4647
'string-replace': {
47-
version: {
48+
source: {
4849
files: {
4950
"jSQL.js": "jSQL.js"
5051
},
@@ -54,6 +55,17 @@ module.exports = function(grunt) {
5455
replacement: '"<%= pkg.version %>"'
5556
}]
5657
}
58+
},
59+
readme: {
60+
files: {
61+
"README.md": "README.md"
62+
},
63+
options: {
64+
replacements: [{
65+
pattern: /\d.\d.\d/g,
66+
replacement: '<%= pkg.version %>'
67+
}]
68+
}
5769
}
5870
},
5971
uglify: {
@@ -76,4 +88,5 @@ module.exports = function(grunt) {
7688
'string-replace',
7789
'uglify'
7890
]);
91+
7992
};

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![jSQL Logo](http://i.imgur.com/VQlJKOc.png)](http://pamblam.github.io/jSQL/)
22

3-
jSQL (Official) - Version 2.9.1 - *Now gluten free!*
3+
jSQL (Official) - Version 2.9.2 - *Now gluten free!*
44

55
[![npm version](https://badge.fury.io/js/jsql-official.svg)](https://badge.fury.io/js/jsql-official) [![Build Status](https://travis-ci.org/Pamblam/jSQL.svg?branch=master)](https://travis-ci.org/Pamblam/jSQL) [![Inline docs](http://inch-ci.org/github/Pamblam/jSQL.svg?branch=master)](http://inch-ci.org/github/Pamblam/jSQL)
66

jSQL.js

Lines changed: 2563 additions & 2568 deletions
Large diffs are not rendered by default.

jSQL.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsql-official",
3-
"version": "2.9.1",
3+
"version": "2.9.2",
44
"description": "A persistent SQL database.",
55
"main": "jSQL.min.js",
66
"directories": {

0 commit comments

Comments
 (0)