@dbml/core 2.5.3 → 2.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -49,10 +49,10 @@ var Lang = P.createLanguage({
|
|
|
49
49
|
ConstraintDefault: function ConstraintDefault(r) {
|
|
50
50
|
return P.seqMap(KP.KeywordDefault, r.ConstExpr, A.makeDefaultConstraint);
|
|
51
51
|
},
|
|
52
|
-
ConstExpr: function ConstExpr() {
|
|
53
|
-
return P.seq(KP.LParen
|
|
52
|
+
ConstExpr: function ConstExpr(r) {
|
|
53
|
+
return P.alt(P.seq(KP.LParen, r.ConstExpr, KP.RParen).map(function (value) {
|
|
54
54
|
return value[1];
|
|
55
|
-
});
|
|
55
|
+
}), pFunction, pConst, KP.KeywordNull.thru(streamline('boolean')));
|
|
56
56
|
},
|
|
57
57
|
ConstraintName: function ConstraintName() {
|
|
58
58
|
return P.seq(KP.KeywordConstraint, pIdentifier).map(function (value) {
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dbml/core",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "Holistics <dev@holistics.io>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
|
-
"homepage": "https://dbml.
|
|
7
|
+
"homepage": "https://dbml.dbdiagram.io",
|
|
8
8
|
"repository": "https://github.com/holistics/dbml/tree/master/packages/dbml-core",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"dbml",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"\\.(?!json$)[^.]*$": "@glen/jest-raw-loader"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "2f74de58e4a66ac7390833e3a9434e3fab7e0f4e"
|
|
59
59
|
}
|