Skip to content

Commit 6aaf6eb

Browse files
committed
dist.
1 parent 0c1df73 commit 6aaf6eb

File tree

6 files changed

+30
-8
lines changed

6 files changed

+30
-8
lines changed

.gitignore

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
/node_modules/
2-
npm-debug.log
3-
lib/
1+
.DS_Store
2+
node_modules
3+
*.log
4+
lib
45
coverage/
5-
/bower_components/
6-
_book/
6+
bower_components
7+
_book
8+
_test

dist/firenze.full.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21677,13 +21677,23 @@ this["firenze"] =
2167721677

2167821678
return this;
2167921679
}
21680+
}, {
21681+
key: "getFunctions",
21682+
value: function getFunctions() {
21683+
return this.funcs;
21684+
}
2168021685
}, {
2168121686
key: "setColumn",
2168221687
value: function setColumn(column) {
2168321688
this.column = column;
2168421689

2168521690
return this;
2168621691
}
21692+
}, {
21693+
key: "getColumn",
21694+
value: function getColumn() {
21695+
return this.column;
21696+
}
2168721697
}, {
2168821698
key: "upper",
2168921699
value: function upper() {

dist/firenze.full.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/firenze.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1693,13 +1693,23 @@ this["firenze"] =
16931693

16941694
return this;
16951695
}
1696+
}, {
1697+
key: "getFunctions",
1698+
value: function getFunctions() {
1699+
return this.funcs;
1700+
}
16961701
}, {
16971702
key: "setColumn",
16981703
value: function setColumn(column) {
16991704
this.column = column;
17001705

17011706
return this;
17021707
}
1708+
}, {
1709+
key: "getColumn",
1710+
value: function getColumn() {
1711+
return this.column;
1712+
}
17031713
}, {
17041714
key: "upper",
17051715
value: function upper() {

dist/firenze.min.js

Lines changed: 1 addition & 1 deletion
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": "firenze",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "ORM for relational databases.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)