@thi.ng/expose 0.1.0 → 1.0.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/expose@0.1.0...@thi.ng/expose@1.0.1) (2021-10-13)
7
+
8
+ **Note:** Version bump only for package @thi.ng/expose
9
+
10
+
11
+
12
+
13
+
6
14
  # 0.1.0 (2021-10-12)
7
15
 
8
16
 
package/README.md CHANGED
@@ -51,10 +51,11 @@ ES module import:
51
51
 
52
52
  [Skypack documentation](https://docs.skypack.dev/)
53
53
 
54
- For NodeJS (v14.6+):
54
+ For Node.js REPL:
55
55
 
56
56
  ```text
57
- node --experimental-specifier-resolution=node --experimental-repl-await
57
+ # with flag only for < v16
58
+ node --experimental-repl-await
58
59
 
59
60
  > const expose = await import("@thi.ng/expose");
60
61
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/expose",
3
- "version": "0.1.0",
3
+ "version": "1.0.1",
4
4
  "description": "Conditional global variable exposition",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,7 +34,7 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "devDependencies": {
37
- "@thi.ng/testament": "^0.1.0"
37
+ "@thi.ng/testament": "^0.1.1"
38
38
  },
39
39
  "keywords": [
40
40
  "global",
@@ -49,6 +49,9 @@
49
49
  "process": false,
50
50
  "setTimeout": false
51
51
  },
52
+ "engines": {
53
+ "node": ">=12.7"
54
+ },
52
55
  "files": [
53
56
  "*.js",
54
57
  "*.d.ts"
@@ -59,5 +62,5 @@
59
62
  }
60
63
  },
61
64
  "thi.ng": {},
62
- "gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115"
65
+ "gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19"
63
66
  }