@lumjs/core 1.1.0 → 1.1.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.
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.1.1] - 2022-08-02
10
+ ### Fixed
11
+ - A couple missing constants in some functions.
12
+
9
13
  ## [1.1.0] - 2022-07-29
10
14
  ### Added
11
15
  - `types.doesDescriptorTemplate()` method.
@@ -27,6 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
31
  - See [1.0-beta.md](1.0-beta.md) for the beta versions of `1.0`
28
32
  - See [lum.js](https://github.com/supernovus/lum.js) for the original library this is replacing.
29
33
 
30
- [Unreleased]: https://github.com/supernovus/lum.core.js/compare/v1.0.0...HEAD
34
+ [Unreleased]: https://github.com/supernovus/lum.core.js/compare/v1.1.1...HEAD
35
+ [1.1.1]: https://github.com/supernovus/lum.core.js/compare/v1.1.0...v1.1.1
36
+ [1.1.0]: https://github.com/supernovus/lum.core.js/compare/v1.0.0...v1.1.0
31
37
  [1.0.0]: https://github.com/supernovus/lum.core.js/releases/tag/v1.0.0
32
38
 
package/lib/obj/ns.js CHANGED
@@ -1,7 +1,8 @@
1
1
  // Import required bits here.
2
2
  const
3
3
  {
4
- B, root, isObj, needObj, def, nonEmptyArray, notNil,
4
+ B, S,
5
+ root, isObj, needObj, def, nonEmptyArray, notNil,
5
6
  doesDescriptorTemplate,
6
7
  } = require('../types');
7
8
 
package/lib/opt.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * @module @lumjs/core/opt
4
4
  */
5
5
 
6
- const {U,needObj,needType} = require('./types');
6
+ const {U,F,S,needObj,needType} = require('./types');
7
7
 
8
8
  /**
9
9
  * See if a value is *set*, and if not, return a default value.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumjs/core",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "main": "lib/index.js",
5
5
  "exports":
6
6
  {