Skip to content
This repository has been archived by the owner on May 27, 2019. It is now read-only.

Commit

Permalink
Merge updates from node-project-template
Browse files Browse the repository at this point in the history
Excluding the ESLint updates which will take some more work.

Signed-off-by: Kevin Locke <[email protected]>
  • Loading branch information
kevinoid committed Dec 13, 2016
2 parents e1f21a7 + 118473a commit 0febd9a
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
.editorconfig
.eslintignore
.eslintrc
.npmignore
.travis.yml
/test
/tools
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# https://docs.travis-ci.com/user/customizing-the-build/
language: node_js
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Backported `fs.*FileSync` Functions
===================================

[![Build status](https://img.shields.io/travis/kevinoid/fs-file-sync-fd.svg?style=flat)](https://travis-ci.org/kevinoid/fs-file-sync-fd)
[![Build Status: Linux](https://img.shields.io/travis/kevinoid/fs-file-sync-fd.svg?style=flat&label=build+on+linux)](https://travis-ci.org/kevinoid/fs-file-sync-fd)
[![Build Status: Windows](https://img.shields.io/appveyor/ci/kevinoid/fs-file-sync-fd.svg?style=flat&label=build+on+windows)](https://ci.appveyor.com/project/kevinoid/fs-file-sync-fd)
[![Dependency Status](https://img.shields.io/david/kevinoid/fs-file-sync-fd.svg?style=flat)](https://david-dm.org/kevinoid/fs-file-sync-fd)
[![Supported Node Version](https://img.shields.io/node/v/fs-file-sync-fd.svg?style=flat)](https://www.npmjs.com/package/fs-file-sync-fd)
[![Version on NPM](https://img.shields.io/npm/v/fs-file-sync-fd.svg?style=flat)](https://www.npmjs.com/package/fs-file-sync-fd)
Expand Down
35 changes: 35 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# http://www.appveyor.com/docs/appveyor-yml

# Use CR-LF line endings on Windows (default is core.autocrlf input)
init:
- git config --global core.autocrlf true

# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "7"

# If the package has arch-dependent features, uncomment this.
#platform:
# - x86
# - x64

install:
- ps: Install-Product node $env:nodejs_version
- npm -g install npm
- npm install

test_script:
- node --version
- npm --version
- npm test

# Disable build step, which we don't need
build: off

# If any job fails, fail build immediately to avoid wasting time/resources.
matrix:
fast_finish: true
1 change: 1 addition & 0 deletions fs-file-sync-fd.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @copyright Copyright Node.js contributors. All rights reserved.
* @license MIT
*/

'use strict';

var fs = require('fs');
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* @copyright Copyright 2016 Kevin Locke <[email protected]>
* @license MIT
*/

'use strict';

var fsFileSyncFD = require('./fs-file-sync-fd');
Expand Down

0 comments on commit 0febd9a

Please sign in to comment.