Compare commits
No commits in common. "057466c952e406cb99d52b6fbd478937cc92a93c" and "564578c1605840af1d8a858ac8f1ab8d5f57798c" have entirely different histories.
057466c952
...
564578c160
@ -1,10 +1,5 @@
|
||||
# ChangeLog
|
||||
|
||||
## 2020-06-11 (0.0.4)
|
||||
|
||||
- modify types export
|
||||
- add package repository
|
||||
|
||||
## 2020-06-10 (0.0.3)
|
||||
|
||||
- add types init value
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mtfos-validator",
|
||||
"version": "0.0.4",
|
||||
"version": "0.0.3",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
@ -12,9 +12,5 @@
|
||||
"devDependencies": {
|
||||
"jest": "^26.0.1",
|
||||
"standard": "^12.0.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.trj.tw/nodejs/validator.git"
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,15 @@
|
||||
const types = {}
|
||||
module.exports = types
|
||||
types.Base = require('./base.js')
|
||||
types.StringType = require('./string.js')
|
||||
types.NumberType = require('./number.js')
|
||||
types.BooleanType = require('./boolean.js')
|
||||
types.ObjectType = require('./object.js')
|
||||
types.ArrayType = require('./array.js')
|
||||
const Base = require('./base.js')
|
||||
const StringType = require('./string.js')
|
||||
const NumberType = require('./number.js')
|
||||
const BooleanType = require('./boolean.js')
|
||||
const ObjectType = require('./object.js')
|
||||
const ArrayType = require('./array.js')
|
||||
|
||||
module.exports = {
|
||||
Base,
|
||||
StringType,
|
||||
NumberType,
|
||||
BooleanType,
|
||||
ObjectType,
|
||||
ArrayType
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user