npm-pkgbuild 8.3.2 → 8.3.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "8.3.2",
3
+ "version": "8.3.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -103,6 +103,7 @@ export class NodeModulesContentProvider extends ContentProvider {
103
103
  const toBeSkipped = new RegExp(
104
104
  "(" +
105
105
  [
106
+ "package-lock.json",
106
107
  "~",
107
108
  "\\.\\d",
108
109
  "\\.map",
@@ -140,16 +141,17 @@ const toBeSkipped = new RegExp(
140
141
  "Copyrightnotice\\.txt",
141
142
  "Doxyfile",
142
143
  "Dockerfile",
143
- "CODE_OF_CONDUCT(\\.md)?",
144
+ "CODE_OF_CONDUCT(\\.md|\\.txt)?",
144
145
  "GOVERNANCE(\\.md)?",
145
146
  "CODEOWNERS(\\.md)?",
146
147
  "UPGRAD(E|ING)(\\.md)?",
147
- "AUTHORS(\\.md)?",
148
+ "AUTHORS(\\.md|\\.txt)?",
148
149
  "OWNERS",
149
150
  "CONTRIBUT(ORS|ING)(\\.md)?",
150
151
  "CHANGELOG(\\.md)?",
151
152
  "CHANGES(\\.md)?",
152
153
  "HISTORY(\\.md)?",
154
+ "DOCUMENTATION(\\.md)?",
153
155
  "LICEN[SC]E(\\-\\w+(\\.txt)?|\\.md|\\.txt|\\.BSD|\\.APACHE2|\\.MIT|\\.terms)?",
154
156
  "README(.*\\.md|\\.txt)?",
155
157
  "INSTALL(.*\\.md)?",
@@ -212,6 +214,6 @@ const toBeSkipped = new RegExp(
212
214
  "chains and topics\\.md",
213
215
  "build_detect_platform"
214
216
  ].join("|") +
215
- ")$|(node_modules/(@types|node-addon-api)|(win32|android|darwin)-(ia32|x64|arm|arm64))",
217
+ ")$|(node_modules/(@types|node-addon-api|node-gyp)|(win32|android|darwin)-(ia32|x64|arm|arm64))",
216
218
  "i"
217
219
  );