Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

merge from arlac77/npm-package-template-svelte #485

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

node_modules
build
bundle.*
test-results
*.log
*.dump
*.node
.DS_Store
.test
.tmp
.tmp

build
*.node
6 changes: 5 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@

build
tests
test-results
example
doc
*.log
*.tmp
.test
.tmp
.npmrc
.travis.yml
.vscode
.nyc_output

.DS_Store
.markdown-doctest-setup.js
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
- npm run cover
- npx codecov
- cat ./build/coverage/lcov.info | npx coveralls
- npm run test
- stage: doc
node_js: lts/*
skip_cleanup: 'true'
Expand All @@ -29,3 +30,7 @@ branches:
- /^greenkeeper/.*$/
- /^mkpr/.*$/
- /^npm-template-sync/.*$/
addons:
chrome: stable
env:
- BROWSER=chrome
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[![minified size](https://badgen.net/bundlephobia/min/sftp-resolver-fs)](https://bundlephobia.com/result?p=sftp-resolver-fs)
[![Svelte v3](https://img.shields.io/badge/svelte-v3-orange.svg)](https://svelte.dev)
[![npm](https://img.shields.io/npm/v/sftp-resolver-fs.svg)](https://www.npmjs.com/package/sftp-resolver-fs)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![minified size](https://badgen.net/bundlephobia/min/sftp-resolver-fs)](https://bundlephobia.com/result?p=sftp-resolver-fs)
[![downloads](http://img.shields.io/npm/dm/sftp-resolver-fs.svg?style=flat-square)](https://npmjs.org/package/sftp-resolver-fs)
[![GitHub Issues](https://img.shields.io/github/issues/arlac77/sftp-resolver-fs.svg?style=flat-square)](https://github.com/arlac77/sftp-resolver-fs/issues)
[![Build Status](https://secure.travis-ci.org/arlac77/sftp-resolver-fs.png)](http://travis-ci.org/arlac77/sftp-resolver-fs)
[![codecov.io](http://codecov.io/github/arlac77/sftp-resolver-fs/coverage.svg?branch=master)](http://codecov.io/github/arlac77/sftp-resolver-fs?branch=master)
[![Coverage Status](https://coveralls.io/repos/arlac77/sftp-resolver-fs/badge.svg)](https://coveralls.io/r/arlac77/sftp-resolver-fs)
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![Known Vulnerabilities](https://snyk.io/test/github/arlac77/sftp-resolver-fs/badge.svg)](https://snyk.io/test/github/arlac77/sftp-resolver-fs)
Expand Down
Loading