@plugjs/build 0.3.1 → 0.3.3

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/dist/index.cjs CHANGED
@@ -308,6 +308,7 @@ function banner(message) {
308
308
  // Annotate the CommonJS export names for ESM import in node:
309
309
  0 && (module.exports = {
310
310
  banner,
311
- tasks
311
+ tasks,
312
+ ...require("@plugjs/plug")
312
313
  });
313
314
  //# sourceMappingURL=index.cjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/build",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
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
  "dependencies": {
33
- "@plugjs/cov8": "^0.3.1",
34
- "@plugjs/eslint": "^0.3.1",
35
- "@plugjs/eslint-plugin": "^0.1.4",
36
- "@plugjs/jasmine": "^0.3.1",
37
- "@plugjs/plug": "^0.3.1",
38
- "@plugjs/typescript": "^0.3.1"
33
+ "@plugjs/cov8": "^0.3.4",
34
+ "@plugjs/eslint": "^0.3.4",
35
+ "@plugjs/eslint-plugin": "^0.1.5",
36
+ "@plugjs/jasmine": "^0.3.4",
37
+ "@plugjs/plug": "^0.3.4",
38
+ "@plugjs/typescript": "^0.3.4"
39
39
  },
40
40
  "files": [
41
41
  "*.md",
@@ -3,6 +3,7 @@
3
3
  "compilerOptions": {
4
4
  "types": [ "jasmine", "node" ],
5
5
  "rootDir": "..",
6
+ "noUncheckedIndexedAccess": true,
6
7
  },
7
8
  "include": [ "." ],
8
9
  }
@@ -4,7 +4,7 @@
4
4
  "target": "esnext",
5
5
  "module": "esnext",
6
6
  "moduleResolution": "bundler",
7
- "types": [ "node" ],
7
+ "types": [ ],
8
8
  "esModuleInterop": true,
9
9
 
10
10
  "noEmit": true,