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

Fix support for absolute paths in srcDir and specDir #50

Merged
merged 3 commits into from Mar 13, 2024

Commits on Mar 8, 2024

  1. Fix support for absolute paths in srcDir and specDir

    Instead of path.join(projectBaseDir, srcDir), we should use
    path.resolve(projectBaseDir, srcDir).  Where join() will always join
    paths, resolve() will resolve relative paths relative to the previous
    argument, but leave absolute paths alone.
    
    Closes jasmine#15
    joeyparrish committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    2087b55 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2024

  1. Configuration menu
    Copy the full SHA
    a60907e View commit details
    Browse the repository at this point in the history
  2. Fix linter

    joeyparrish committed Mar 9, 2024
    Configuration menu
    Copy the full SHA
    fbeebf4 View commit details
    Browse the repository at this point in the history