graphql-scalars
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -27,1 +27,7 @@ # Change log | ||
* Fix [#1](https://github.com/adriano-di-giovanni/graphql-scalars/issues/1). Thanks, [@biomorgoth](https://github.com/biomorgoth) | ||
## 0.1.5 - 2018-01-30 | ||
### Added | ||
* `GraphQLURL` scalar. Thanks [@dperini](https://github.com/dperini). |
@@ -6,3 +6,3 @@ 'use strict'; | ||
}); | ||
exports.GraphQLEmailAddress = exports.GraphQLDate = undefined; | ||
exports.GraphQLURL = exports.GraphQLEmailAddress = exports.GraphQLDate = undefined; | ||
@@ -17,5 +17,10 @@ var _GraphQLDate = require('./GraphQLDate'); | ||
var _GraphQLURL = require('./GraphQLURL'); | ||
var _GraphQLURL2 = _interopRequireDefault(_GraphQLURL); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
exports.GraphQLDate = _GraphQLDate2.default; | ||
exports.GraphQLEmailAddress = _GraphQLEmailAddress2.default; | ||
exports.GraphQLEmailAddress = _GraphQLEmailAddress2.default; | ||
exports.GraphQLURL = _GraphQLURL2.default; |
{ | ||
"name": "graphql-scalars", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "Custom scalars for GraphQL", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
# graphql-scalars | ||
Custom scalars for GraphQL. | ||
> Custom [scalars](http://graphql.org/learn/schema/#scalar-types) for GraphQL. | ||
@@ -9,2 +9,3 @@ Currently available scalars: | ||
* [GraphQLEmailAddress](#GraphQLEmailAddress) | ||
* [GraphQLURL](#GraphQLURL) | ||
@@ -106,4 +107,8 @@ ## Installation | ||
## GraphQLURL <a name="GraphQLURL" /> | ||
`GraphQLURL` uses the [regular expression](https://gist.github.com/dperini/729294) by [Diego Perini](https://github.com/dperini). | ||
## License | ||
`graphql-scalars` is [MIT-licensed](https://github.com/adriano-di-giovanni/graphql-scalars/blob/master/LICENSE). |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11358
11
143
113