bare-module 3.1.2 → 3.1.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.
package/CMakeLists.txt CHANGED
@@ -7,7 +7,7 @@ include(bare)
7
7
  add_bare_module(bare_module)
8
8
 
9
9
  target_sources(
10
- bare_module
10
+ ${bare_module}
11
11
  PRIVATE
12
12
  binding.c
13
13
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bare-module",
3
- "version": "3.1.2",
3
+ "version": "3.1.4",
4
4
  "description": "Module support for JavaScript",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -11,9 +11,7 @@
11
11
  "lib",
12
12
  "prebuilds"
13
13
  ],
14
- "addon": {
15
- "target": "bare_module"
16
- },
14
+ "addon": true,
17
15
  "scripts": {
18
16
  "test": "standard && bare test.js"
19
17
  },