bare-module 1.13.2 → 1.13.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.
Files changed (2) hide show
  1. package/index.js +1 -6
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -49,10 +49,6 @@ module.exports = exports = class Module {
49
49
  this._exports = value
50
50
  }
51
51
 
52
- get imports () {
53
- return this._imports
54
- }
55
-
56
52
  // For Node.js compatibility
57
53
  get id () {
58
54
  return this.filename
@@ -72,8 +68,7 @@ module.exports = exports = class Module {
72
68
  filename: this.filename,
73
69
  dirname: this.dirname,
74
70
  main: this.main,
75
- exports: this.exports,
76
- imports: this.imports
71
+ exports: this.exports
77
72
  }
78
73
  }
79
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bare-module",
3
- "version": "1.13.2",
3
+ "version": "1.13.3",
4
4
  "description": "Module support for JavaScript",
5
5
  "main": "index.js",
6
6
  "files": [