Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gregnb/filemanager-webpack-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.0
Choose a base ref
...
head repository: gregnb/filemanager-webpack-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.0.0
Choose a head ref
  • 10 commits
  • 8 files changed
  • 3 contributors

Commits on Jul 21, 2022

  1. Bump terser from 5.14.1 to 5.14.2 (#118)

    Bumps [terser](https://github.com/terser/terser) from 5.14.1 to 5.14.2.
    - [Release notes](https://github.com/terser/terser/releases)
    - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/terser/terser/commits)
    
    ---
    updated-dependencies:
    - dependency-name: terser
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 21, 2022
    Copy the full SHA
    8cf85b5 View commit details

Commits on Nov 16, 2022

  1. Copy the full SHA
    59b17ca View commit details
  2. Update fast-glob to v3.2.12

    sibiraj-s committed Nov 16, 2022
    Copy the full SHA
    1c0803a View commit details
  3. Update devDependencies

    sibiraj-s committed Nov 16, 2022
    Copy the full SHA
    e69d704 View commit details
  4. Update rollup v3

    sibiraj-s committed Nov 16, 2022
    Copy the full SHA
    23e332c View commit details
  5. Copy the full SHA
    6d2853f View commit details
  6. Drop support for node v12

    sibiraj-s committed Nov 16, 2022
    Copy the full SHA
    0f334f0 View commit details
  7. Fix package-lock.json

    sibiraj-s committed Nov 16, 2022
    Copy the full SHA
    290c6d0 View commit details
  8. Add Funding

    sibiraj-s committed Nov 16, 2022
    Copy the full SHA
    0ab71ee View commit details
  9. Release v8.0.0

    sibiraj-s committed Nov 16, 2022
    Copy the full SHA
    8f075b5 View commit details
Showing with 1,001 additions and 759 deletions.
  1. +1 −0 .github/FUNDING.yml
  2. +1 −1 .github/workflows/tests.yml
  3. +1 −1 .husky/commit-msg
  4. +1 −1 .husky/pre-commit
  5. +1 −1 .husky/pre-push
  6. +6 −0 CHANGELOG.md
  7. +977 −743 package-lock.json
  8. +13 −12 package.json
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [sibiraj-s]
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12, 14, 16, lts/*, current]
node-version: [14, 16, 18, lts/*, current]

name: Test - ${{ matrix.os }} - Node v${{ matrix.node-version }}

2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

npx --no -- commitlint --edit $1
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install pretty-quick --staged
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

npm run build
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## v8.0.0 (2022-11-16)

- drop nodejs 12 support, requires node 14.13.1+ ([0f334f0](https://github.com/gregnb/filemanager-webpack-plugin/commit/0f334f0))
- fix export syntax for typings ([59b17ca](https://github.com/gregnb/filemanager-webpack-plugin/commit/59b17ca))
- update to rollup 3 ([23e332c](https://github.com/gregnb/filemanager-webpack-plugin/commit/23e332c))

## v7.0.0 (2022-06-11)

- no notable changes since v7.0.0-beta.0
Loading