@lumjs/tests 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.
- package/CHANGELOG.md +8 -1
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ 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-07-15
|
|
10
|
+
### Fixed
|
|
11
|
+
- Dependency issue in `package.json` with pre-release parent.
|
|
12
|
+
### Added
|
|
13
|
+
- A temporary `npm test` script using the `prove` utility from Perl 5.
|
|
14
|
+
|
|
9
15
|
## [1.1.0] - 2022-07-08
|
|
10
16
|
### Fixed
|
|
11
17
|
- Changelog had wrong URLs.
|
|
@@ -26,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
26
32
|
- Ported from Lum.js v4 library set.
|
|
27
33
|
- Added a few more features from the PHP version.
|
|
28
34
|
|
|
29
|
-
[Unreleased]: https://github.com/supernovus/lum.tests.js/compare/v1.1.
|
|
35
|
+
[Unreleased]: https://github.com/supernovus/lum.tests.js/compare/v1.1.1...HEAD
|
|
36
|
+
[1.1.1]: https://github.com/supernovus/lum.tests.js/compare/v1.1.0...v1.1.1
|
|
30
37
|
[1.1.0]: https://github.com/supernovus/lum.tests.js/compare/v1.0.0...v1.1.0
|
|
31
38
|
[1.0.0]: https://github.com/supernovus/lum.tests.js/releases/tag/v1.0.0
|
|
32
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumjs/tests",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository":
|
|
@@ -9,6 +9,11 @@
|
|
|
9
9
|
"url": "https://github.com/supernovus/lum.tests.js.git"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@lumjs/core": "^1.0.0"
|
|
12
|
+
"@lumjs/core": "^1.0.0-beta.4"
|
|
13
|
+
},
|
|
14
|
+
"scripts":
|
|
15
|
+
{
|
|
16
|
+
"-TODO-1": "When Harness and bin/lumtest are done, use that for 'test'",
|
|
17
|
+
"test": "prove -e node --ext js ./test"
|
|
13
18
|
}
|
|
14
19
|
}
|