bare-url 1.0.2 → 1.0.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/CMakeLists.txt +2 -2
  2. package/package.json +2 -4
package/CMakeLists.txt CHANGED
@@ -15,13 +15,13 @@ endif()
15
15
  add_bare_module(bare_url)
16
16
 
17
17
  target_sources(
18
- bare_url
18
+ ${bare_url}
19
19
  PRIVATE
20
20
  binding.c
21
21
  )
22
22
 
23
23
  target_link_libraries(
24
- bare_url
24
+ ${bare_url}
25
25
  PUBLIC
26
26
  url_static
27
27
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bare-url",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "URL parser for JavaScript",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -15,9 +15,7 @@
15
15
  "vendor/libutf/include",
16
16
  "vendor/libutf/src"
17
17
  ],
18
- "addon": {
19
- "target": "bare_url"
20
- },
18
+ "addon": true,
21
19
  "scripts": {
22
20
  "test": "standard && bare test.js"
23
21
  },