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

Fixes npm script errors on Windows #5711

Merged
merged 5 commits into from
Feb 26, 2024
Merged

Commits on Feb 2, 2024

  1. Fix: stylelint throws error on Windows

    ```
    > mantine-a91763c0e2@7.5.1 stylelint
    > stylelint '**/*.css' --cache
    
    Error: No files matching the pattern "'**/*.css'" were found.
    ```
    Reference: stylelint/stylelint#4178 (comment)
    ktunador committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    dd1bdbb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7fa3614 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a42f2cb View commit details
    Browse the repository at this point in the history
  4. fix: rimraf throws Illegal characters in path error

    `rimraf` doesn't treat arguments as glob patterns by default, and Windows doesn't allow `*` character in paths.
    
    From the docs
    ```
      -G --no-glob         Treat arguments as literal paths, not globs (default)
      -g --glob            Treat arguments as glob patterns
    ```
    ktunador committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    ff86e96 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. Configuration menu
    Copy the full SHA
    7a94a06 View commit details
    Browse the repository at this point in the history