@plugjs/build 0.6.1 → 0.6.2
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 +11 -1
- package/package.json +28 -8
package/README.md
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
Simple shared build using PlugJS
|
|
2
2
|
================================
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
This repository contains a basic, default build system created with PlugJS.
|
|
5
|
+
|
|
6
|
+
The overall setup does the following:
|
|
7
|
+
* transpiles all TypeScript sources to ESM and CommonJS modules
|
|
8
|
+
* type-checks all TypeScript sources and produces `.d.ts` type definitions
|
|
9
|
+
* runs unit tests using the `Expect5` framework
|
|
10
|
+
* lints all sources with ESLint v9 and the PlugJS ESlint Plugin
|
|
11
|
+
* collects coverage and produces an HTML report from it.
|
|
12
|
+
|
|
13
|
+
To get started, simply run `npx '@plugjs/build'` in an empty directory. It
|
|
14
|
+
will create the required project layout and sample files.
|
|
5
15
|
|
|
6
16
|
```bash
|
|
7
17
|
$ npx '@plugjs/build'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plugjs/build",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Simple shared build using PlugJS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"transpile": "plug transpile"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@plugjs/cov8": "^0.6.
|
|
34
|
-
"@plugjs/eslint": "^0.6.
|
|
35
|
-
"@plugjs/eslint-plugin": "^0.2.
|
|
36
|
-
"@plugjs/expect5": "^0.6.
|
|
37
|
-
"@plugjs/plug": "^0.6.
|
|
38
|
-
"@plugjs/typescript": "^0.6.
|
|
33
|
+
"@plugjs/cov8": "^0.6.6",
|
|
34
|
+
"@plugjs/eslint": "^0.6.6",
|
|
35
|
+
"@plugjs/eslint-plugin": "^0.2.7",
|
|
36
|
+
"@plugjs/expect5": "^0.6.6",
|
|
37
|
+
"@plugjs/plug": "^0.6.6",
|
|
38
|
+
"@plugjs/typescript": "^0.6.6"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
41
|
"*.md",
|
|
@@ -43,5 +43,25 @@
|
|
|
43
43
|
"resources/",
|
|
44
44
|
"resources/**/.*",
|
|
45
45
|
"src/"
|
|
46
|
-
]
|
|
46
|
+
],
|
|
47
|
+
"author": "Juit Developers <developers@juit.com>",
|
|
48
|
+
"license": "Apache-2.0",
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+ssh://git@github.com/plugjs/build.git"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"build",
|
|
55
|
+
"compile",
|
|
56
|
+
"ecmascript",
|
|
57
|
+
"javascript",
|
|
58
|
+
"node",
|
|
59
|
+
"plugjs",
|
|
60
|
+
"transpile",
|
|
61
|
+
"typescript"
|
|
62
|
+
],
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/plugjs/build/issues"
|
|
65
|
+
},
|
|
66
|
+
"homepage": "https://github.com/plugjs/build/#readme"
|
|
47
67
|
}
|