Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
0fa910f
improved docs, relative shortName option, improved performance for sy…
AckerApple Dec 12, 2016
6fce528
version patch bump
AckerApple Dec 12, 2016
3b01fe5
more windows compat
AckerApple Dec 12, 2016
42ed810
fixed issue when shortName=relative and type=combine
AckerApple Feb 8, 2017
1a21c09
Merge branch 'master' into master
AckerApple Feb 18, 2017
0984364
readme
AckerApple Jun 15, 2017
5a74154
tests
AckerApple Jun 15, 2017
c5e9d93
backwards compat old node
AckerApple Jun 15, 2017
cf54939
skip test for non utf8 files
AckerApple Jun 15, 2017
352413b
test remove arrow function
AckerApple Jun 15, 2017
3d4bc4b
backwards compat, removed Object.assign
AckerApple Jun 15, 2017
d0e9d78
removed support for node .1
AckerApple Jun 15, 2017
14e65c2
windows compat tests
AckerApple Jun 15, 2017
f507444
refine windows tests
AckerApple Jun 15, 2017
d0f447c
fix win testing
AckerApple Jun 15, 2017
501cc20
Create CODE_OF_CONDUCT.md
AckerApple Jun 15, 2017
f22e1e8
Delete CODE_OF_CONDUCT.md
AckerApple Jun 15, 2017
2f1ad78
Create CODE_OF_CONDUCT.md
AckerApple Jun 15, 2017
d162325
Merge pull request #1 from AckerApple/add-code-of-conduct-1
AckerApple Jun 15, 2017
3b83eda
Delete CODE_OF_CONDUCT.md
AckerApple Jun 15, 2017
3d5eaeb
Create CODE_OF_CONDUCT.md
AckerApple Jun 15, 2017
bfde55e
Merge pull request #2 from AckerApple/add-code-of-conduct-2
AckerApple Jun 15, 2017
44a6c68
Delete CODE_OF_CONDUCT.md
AckerApple Jun 15, 2017
408847b
fixed strange problem with webpack.
Aug 9, 2017
89938ae
Merge pull request #3 from btbxbob/master
AckerApple Aug 9, 2017
72a4d2c
ready for npm publish
AckerApple Aug 9, 2017
d915358
Merge branch 'master' of https://github.com/AckerApple/node-dir
AckerApple Aug 9, 2017
d372735
ready for npm publish
AckerApple Aug 9, 2017
e87f233
full version
AckerApple Aug 9, 2017
7cebf51
x
AckerApple Aug 9, 2017
a0a62b0
fix badge
AckerApple Aug 9, 2017
3eba375
x
AckerApple Aug 9, 2017
09ca72d
badges
AckerApple Aug 10, 2017
1927d64
v
AckerApple Aug 10, 2017
ec0a3da
fix empty folders
AckerApple Oct 14, 2017
ab7cbc6
fix test
AckerApple Oct 14, 2017
c9a93a2
fix test2
AckerApple Oct 14, 2017
6ad7dec
fixes
AckerApple Oct 16, 2017
1b41552
path-reader
AckerApple Feb 14, 2018
66d2c7a
compiled from typescript + fsStat options
Jun 17, 2022
a225bad
update
Jun 17, 2022
6a7f6db
update
Jun 17, 2022
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
26 changes: 26 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Test against the latest versions of these Node.js versions
environment:
matrix:
# node.js
- nodejs_version: "4"
- nodejs_version: "5"
- nodejs_version: "6"
- nodejs_version: "7"

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install

# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test

# Don't actually build.
build: off
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.history
.DS_Store

updaters
npm-debug.log

node_modules
node_modules
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: node_js

# test on node.js version 0.10.x
node_js:
- 0.10

- 8
- 4
- 5
- 0.12
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# path-reader - Change Log
All notable changes to this project will be documented here.

## [1.1.0] - 2018-02-14
- valuetizer option when returns null, item is skipped
- Happy Valentines Day

## [1.0.6] - 2017-10-13
- empty folders containing empty items reads are now empty array instead of undefined

## [1.0.5] - 2017-10-13
### Fixed
- empty folder reads are now empty array instead of undefined

2 changes: 0 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
(The MIT License)

Copyright (c) 2012 Nathan Cartwright <fshost@yahoo.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
Expand Down
Loading