Code Monkey home page Code Monkey logo

Comments (5)

isaacs avatar isaacs commented on July 1, 2024

Interesting. So the directory filtering is failing.

from node-glob.

cowboy avatar cowboy commented on July 1, 2024

In case this helps in any way, when I use the mark option, matched directories have trailing slashes, although the files list still contains non-directories when it shouldn't

OS X (this works as-expected):

$ node -pe "require('glob').sync('d**/**', {mark: true})"
[ 'deep/',
  'deep/deep.txt',
  'deep/deeper/',
  'deep/deeper/deeper.txt',
  'deep/deeper/deepest/',
  'deep/deeper/deepest/deepest.txt' ]

$ node -pe "require('glob').sync('d**/**/', {mark: true})"
[ 'deep/', 'deep/deeper/', 'deep/deeper/deepest/' ]

Windows (the trailing mark slashes are correct, but non-directories should be removed from the result set in the 2nd example):

C:\test>node -pe "require('glob').sync('d**/**', {mark: true})"
[ 'deep/',
  'deep/deep.txt',
  'deep/deeper/',
  'deep/deeper/deeper.txt',
  'deep/deeper/deepest/',
  'deep/deeper/deepest/deepest.txt' ]

C:\test>node -pe "require('glob').sync('d**/**/', {mark: true})"
[ 'deep/',
  'deep/deep.txt',
  'deep/deeper/',
  'deep/deeper/deeper.txt',
  'deep/deeper/deepest/',
  'deep/deeper/deepest/deepest.txt' ]

from node-glob.

isaacs avatar isaacs commented on July 1, 2024

Yeah, definitely a bug. Patch welcome.

from node-glob.

dignifiedquire avatar dignifiedquire commented on July 1, 2024

I'll have a look at it tomorrow.

from node-glob.

dignifiedquire avatar dignifiedquire commented on July 1, 2024

Well I actually did that, but I never got around to fix anything. The first big problem is that basically nothing of the test suite is working on windows.

  1. tapjs/tapjs#57 results that one needs to specify every single file in the test cmd if you want to run it.
  2. All the bash tests don't work because, well there is no bash on Windows.

Aside from that I did some digging into the code to find out what was going wrong but I couldn't really figure out what was happening without a unix machine to compare. As soon as I get my Windows VM up and running I'll take another look.

from node-glob.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.