@jcoreio/toolchain 3.9.3 → 3.9.5

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": "@jcoreio/toolchain",
3
- "version": "3.9.3",
3
+ "version": "3.9.5",
4
4
  "description": "base JS build toolchain",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,7 +12,6 @@ module.exports = async function getModules(packageJsonFile) {
12
12
  type = 'commonjs',
13
13
  main,
14
14
  module,
15
- bin,
16
15
  exports,
17
16
  } = await fs.readJson(packageJsonFile)
18
17
 
@@ -36,10 +35,6 @@ module.exports = async function getModules(packageJsonFile) {
36
35
 
37
36
  checkFile(main)
38
37
  checkFile(module)
39
- if (typeof bin === 'string') checkFile(bin)
40
- else if (bin instanceof Object) {
41
- for (const file of Object.values(bin)) checkFile(file)
42
- }
43
38
 
44
39
  async function checkExport(exp, type) {
45
40
  if (typeof exp === 'string') {