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: RoccoC/webpack-build-notifier
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.3.0
Choose a base ref
...
head repository: RoccoC/webpack-build-notifier
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.0.0
Choose a head ref
  • 2 commits
  • 14 files changed
  • 1 contributor

Commits on May 27, 2024

  1. Fix ignore warnings (#92)

    RoccoC authored May 27, 2024
    Copy the full SHA
    9267026 View commit details
  2. fixed test config

    RoccoC committed May 27, 2024
    Copy the full SHA
    e5d4c71 View commit details
Showing with 8,602 additions and 8,465 deletions.
  1. +26 −0 .eslintrc
  2. +9 −0 CHANGELOG.md
  3. +6 −6 jest.config.js
  4. +8,106 −7,996 package-lock.json
  5. +26 −21 package.json
  6. +102 −93 src/index.ts
  7. +6 −5 src/types.ts
  8. +0 −3 tests/childWarning.js
  9. +0 −5 tests/test.css
  10. +299 −261 tests/test.spec.ts
  11. +14 −20 tests/webpack.config.ts
  12. +4 −0 tsconfig.eslint.json
  13. +4 −5 tsconfig.json
  14. +0 −50 tslint.json
26 changes: 26 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"env": {
"es2021": true,
"node": true
},
"extends": ["airbnb-base", "airbnb-typescript/base"],
"parserOptions": {
"project": "./tsconfig.eslint.json",
"ecmaVersion": 12,
"sourceType": "module"
},
"ignorePatterns": ["tests/*.js"],
"overrides": [
{
"files": ["*.ts"],
"rules": {
"max-len": [
"error",
{
"code": 125
}
]
}
}
]
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

#### 3.0.0

###### _May 27, 2024_

- Added support for Webpack 5.
- Bumped node-notifier to v10.0.1.
- Fixes for [#81](/../../issues/81) and [#90](/../../issues/90))
- Thanks, [ImLunaHey](https://github.com/ImLunaHey)! ([PR](/../../pull/91))

#### 2.3.0

###### _June 19, 2021_
12 changes: 6 additions & 6 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module.exports = {
clearMocks: true,
collectCoverage: true,
collectCoverageFrom: ["src/index.ts"],
coverageDirectory: "coverage",
moduleFileExtensions: ["js", "ts"],
testEnvironment: "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
collectCoverageFrom: ['src/index.ts'],
coverageDirectory: 'coverage',
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
transform: {
'^.+\\.ts?$': 'ts-jest',
},
};
Loading