@plugjs/plug 0.6.5 → 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,7 @@
1
1
  PlugJS Build System
2
2
  ===================
3
3
 
4
- Prototype build system from [Juit GmbH](https://www.juit.com/)
4
+ The core module of the PlugJS build system.
5
5
 
6
6
  * [Copyright Notice](https://github.com/plugjs/plug/blob/main/NOTICE.md)
7
7
  * [License](https://github.com/plugjs/plug/blob/main/LICENSE.md)
package/dist/cli.mjs CHANGED
@@ -15,7 +15,7 @@ var { TRACE, DEBUG, INFO, NOTICE, WARN, ERROR, OFF } = logLevels;
15
15
  var $bnd = (s) => $blu($und(s));
16
16
  var $gnd = (s) => $gry($und(s));
17
17
  var $wnd = (s) => $wht($und(s));
18
- var version = true ? "0.6.5" : "0.0.0-dev";
18
+ var version = true ? "0.6.6" : "0.0.0-dev";
19
19
  function help() {
20
20
  console.log(`${$bnd("Usage:")}
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/plug",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -113,7 +113,7 @@
113
113
  "author": "Juit Developers <developers@juit.com>",
114
114
  "license": "Apache-2.0",
115
115
  "dependencies": {
116
- "@plugjs/tsrun": "^0.5.27",
116
+ "@plugjs/tsrun": "^0.5.31",
117
117
  "@types/node": "<19",
118
118
  "esbuild": "^0.23.0",
119
119
  "jsonc-parser": "^3.3.1",
@@ -128,5 +128,23 @@
128
128
  "dist/",
129
129
  "extra/",
130
130
  "src/"
131
- ]
131
+ ],
132
+ "repository": {
133
+ "type": "git",
134
+ "url": "git+ssh://git@github.com/plugjs/plug.git"
135
+ },
136
+ "keywords": [
137
+ "build",
138
+ "compile",
139
+ "ecmascript",
140
+ "javascript",
141
+ "node",
142
+ "plugjs",
143
+ "transpile",
144
+ "typescript"
145
+ ],
146
+ "bugs": {
147
+ "url": "https://github.com/plugjs/plug/issues"
148
+ },
149
+ "homepage": "https://github.com/plugjs/plug/blob/main/workspaces/plug/#readme"
132
150
  }