@plugjs/expect5 0.6.4 → 0.6.6

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/README.md CHANGED
@@ -1,7 +1,11 @@
1
1
  Unit Testing for the PlugJS Build System
2
2
  ========================================
3
3
 
4
- Prototype build system from [Juit GmbH](https://www.juit.com/)
4
+ This plugin provides both a test runner (somewhat similar to
5
+ [Mocha](https://www.npmjs.com/package/mocha)) and an assertion framework
6
+ (heavily inpired by [Chai](https://www.npmjs.com/package/chai) and
7
+ [Jasmine](https://www.npmjs.com/package/jasmine)), but supports TypeScript
8
+ out of the box (without the need to compile tests).
5
9
 
6
10
  * [Copyright Notice](https://github.com/plugjs/plug/blob/main/NOTICE.md)
7
11
  * [License](https://github.com/plugjs/plug/blob/main/LICENSE.md)
package/dist/cli.mjs CHANGED
@@ -8,7 +8,7 @@ var { $blu, $und, $gry, $wht } = logging;
8
8
  var $gnd = (s) => $gry($und(s));
9
9
  var $bnd = (s) => $blu($und(s));
10
10
  var $wnd = (s) => $wht($und(s));
11
- var version = true ? "0.6.4" : "0.0.0-dev";
11
+ var version = true ? "0.6.6" : "0.0.0-dev";
12
12
  function help() {
13
13
  console.log(`${$blu($und("Usage:"))}
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/expect5",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -43,18 +43,43 @@
43
43
  "author": "Juit Developers <developers@juit.com>",
44
44
  "license": "Apache-2.0",
45
45
  "dependencies": {
46
- "@plugjs/tsrun": "^0.5.27"
46
+ "@plugjs/tsrun": "^0.5.31"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/chai": "^4.3.16",
50
50
  "chai": "<5"
51
51
  },
52
52
  "peerDependencies": {
53
- "@plugjs/plug": "0.6.4"
53
+ "@plugjs/plug": "0.6.6"
54
54
  },
55
55
  "files": [
56
56
  "*.md",
57
57
  "dist/",
58
58
  "src/"
59
- ]
59
+ ],
60
+ "repository": {
61
+ "type": "git",
62
+ "url": "git+ssh://git@github.com/plugjs/plug.git"
63
+ },
64
+ "keywords": [
65
+ "assert",
66
+ "assertion",
67
+ "build",
68
+ "compile",
69
+ "ecmascript",
70
+ "expect",
71
+ "expectation",
72
+ "javascript",
73
+ "node",
74
+ "plugjs",
75
+ "tdd",
76
+ "test",
77
+ "testing",
78
+ "transpile",
79
+ "typescript"
80
+ ],
81
+ "bugs": {
82
+ "url": "https://github.com/plugjs/plug/issues"
83
+ },
84
+ "homepage": "https://github.com/plugjs/plug/blob/main/workspaces/expect5/#readme"
60
85
  }