Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Develop (#1) #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* text eol=lf
*.pdf -text
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
!jest.config.js
npm-debug.log*
node_modules
coverage
coverage
.idea
dist
13 changes: 13 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.idea
test
src
.drone.yml
*.yml
wallaby.js
!dist/**
**/coverage/**/*
.editorconfig
.gitattributes
jest.config.js
tslint.json
*.map
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
language: node_js
cache:
directories:
- node_modules
node_js:
- '6'
- "12"
- "11"
- "10"
- "8"
- "6"
script:
- npm run lint
- npm run test
6 changes: 3 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as transformer from "./transformer";

export * from "./predefined";
import * as transform from './transformer';
export const transformer = transform;
export * from './predefined';
export declare function schema<T extends object>(additional?: boolean): any;
Loading