jest-webextension-mock 3.8.3 → 3.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,4 +26,10 @@ jobs:
26
26
  - run: npm test
27
27
  - run: npm run build --if-present
28
28
  - run: git status --porcelain dist/setup.js
29
+ - name: check dist build
30
+ run: |
31
+ if ! git diff --quiet --exit-code dist/setup.js; then
32
+ echo "::error run 'npm run build' and commit the dist/setup.js file"
33
+ exit 1
34
+ fi
29
35
  - uses: codecov/codecov-action@v3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jest-webextension-mock",
3
- "version": "3.8.3",
3
+ "version": "3.8.4",
4
4
  "description": "Mock the components of a WebExtension",
5
5
  "main": "dist/setup.js",
6
6
  "module": "src/setup.js",