@serenity-is/tsbuild 8.8.8 → 9.1.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/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2014-present Volkan Ceylan, https://serenity.is
3
+ Copyright (c) 2014-present Volkan Ceylan, and the Serenity project authors (https://serenity.is)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
package/dist/index.d.ts CHANGED
@@ -32,6 +32,9 @@ export interface TSBuildOptions {
32
32
  /** True to enable minification. Default is true. */
33
33
  minify?: boolean;
34
34
 
35
+ /** False to not call npmCopy automatically for entries in appsettings.bundles.json that start with `~/npm/`. Default is true.*/
36
+ npmCopy?: boolean;
37
+
35
38
  /** Base directory for calculating output file locations in output directory. Default is "./" */
36
39
  outbase?: string;
37
40
 
package/dist/index.js CHANGED
@@ -142,6 +142,8 @@ export const build = async (opt) => {
142
142
  }
143
143
  }
144
144
 
145
+ delete opt?.npmCopy;
146
+
145
147
  opt = esbuildOptions(opt);
146
148
 
147
149
  if (opt.watch) {
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@serenity-is/tsbuild",
3
- "version": "8.8.8",
3
+ "version": "9.1.6",
4
4
  "author": "Serenity (https://serenity.is)",
5
5
  "bugs": "https://github.com/serenity-is/serenity/issues",
6
6
  "description": "Serenity ESBuild functions",
7
7
  "dependencies": {
8
- "esbuild": "0.25.9",
9
- "glob": "11.0.3"
8
+ "esbuild": "0.27.0",
9
+ "glob": "12.0.0"
10
10
  },
11
11
  "exports": {
12
12
  ".": {