Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
- basically just all the files and dependencies from my template for
  TS libraries

- should support at least jest 23 up (if not lower), so use 23-24 as
  peerDep
  • Loading branch information
agilgur5 committed Dec 8, 2019
0 parents commit 321054d
Show file tree
Hide file tree
Showing 7 changed files with 9,216 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
### tsdx ###

dist/
coverage/

### Node ###

# Logs
logs
*.log
npm-debug.log*

# Dependency directories
node_modules/

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# dotenv environment variables file
.env
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: node_js
# default is the very old 0.10.48; match local version instead
node_js: '10.16.0'

script: npm test -- --coverage
after_script:
# upload coverage reports to CodeCov
- bash <(curl -s https://codecov.io/bash)
- npm run test:pub
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

The changelog is currently hosted on [the GitHub Releases page](https://github.com/agilgur5/jest-without-globals/releases).<br>
It is currently mostly a summary and list of commits made before any tag.
The commits in this library mostly follow a convention and tend to be quite detailed.

This project adheres to [Semantic Versioning](http://semver.org/).
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright (c) 2019 Anton Gilgur

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Loading

0 comments on commit 321054d

Please sign in to comment.