pkgbld 1.21.0 → 1.21.1

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.js CHANGED
@@ -746,7 +746,7 @@ async function writeJson(path, json) {
746
746
  await fs.writeFile(path, toFormattedJson(json));
747
747
  }
748
748
 
749
- var version = "1.21.0";
749
+ var version = "1.21.1";
750
750
  var name = "pkgbld";
751
751
  var license = "MIT";
752
752
  var author = "Konstantin Shutkin";
@@ -781,7 +781,7 @@ var dependencies = {
781
781
  "@niceties/logger": "^1.1.10",
782
782
  "@niceties/draftlog-appender": "^1.3.0",
783
783
  lodash: "^4.17.21",
784
- rollup: "^3.20.2",
784
+ rollup: "^4.0.0",
785
785
  "rollup-plugin-typescript2": "^0.36.0",
786
786
  "rollup-plugin-preprocess": "^0.0.4",
787
787
  "@rollup/plugin-commonjs": "^25.0.0",
@@ -9,15 +9,14 @@ export declare function getRollupConfigs([provider, plugins]: [Provider, PkgbldR
9
9
  chunkFileNames?: string | ((chunkInfo: import("rollup").PreRenderedChunk) => string) | undefined;
10
10
  compact?: boolean | undefined;
11
11
  dir: string;
12
- dynamicImportFunction?: string | undefined;
13
12
  dynamicImportInCjs?: boolean | undefined;
14
13
  entryFileNames: string | ((chunkInfo: import("rollup").PreRenderedChunk) => string);
15
14
  esModule?: boolean | "if-default-prop" | undefined;
16
- experimentalDeepDynamicChunkOptimization?: boolean | undefined;
17
15
  experimentalMinChunkSize?: number | undefined;
18
16
  exports?: "default" | "named" | "none" | "auto" | undefined;
19
17
  extend?: boolean | undefined;
20
18
  externalImportAssertions?: boolean | undefined;
19
+ externalImportAttributes?: boolean | undefined;
21
20
  externalLiveBindings?: boolean | undefined;
22
21
  file?: string | undefined;
23
22
  footer?: string | import("rollup").AddonFunction | undefined;
@@ -33,12 +32,10 @@ export declare function getRollupConfigs([provider, plugins]: [Provider, PkgbldR
33
32
  manualChunks?: import("rollup").ManualChunksOption | undefined;
34
33
  minifyInternalExports?: boolean | undefined;
35
34
  name?: string | undefined;
36
- namespaceToStringTag?: boolean | undefined;
37
35
  noConflict?: boolean | undefined;
38
36
  outro?: string | import("rollup").AddonFunction | undefined;
39
37
  paths?: import("rollup").OptionsPaths | undefined;
40
38
  plugins: false | import("rollup").OutputPlugin | import("rollup").OutputPluginOption[] | Promise<false | import("rollup").OutputPlugin | import("rollup").NullValue | import("rollup").OutputPluginOption[]> | null;
41
- preferConst?: boolean | undefined;
42
39
  preserveModules?: boolean | undefined;
43
40
  preserveModulesRoot?: string | undefined;
44
41
  sanitizeFileName?: boolean | ((fileName: string) => string) | undefined;
@@ -46,11 +43,12 @@ export declare function getRollupConfigs([provider, plugins]: [Provider, PkgbldR
46
43
  sourcemapBaseUrl?: string | undefined;
47
44
  sourcemapExcludeSources?: boolean | undefined;
48
45
  sourcemapFile?: string | undefined;
46
+ sourcemapFileNames?: string | ((chunkInfo: import("rollup").PreRenderedChunk) => string) | undefined;
49
47
  sourcemapIgnoreList?: boolean | import("rollup").SourcemapIgnoreListOption | undefined;
50
48
  sourcemapPathTransform?: import("rollup").SourcemapPathTransformOption | undefined;
51
49
  strict?: boolean | undefined;
52
50
  systemNullSetters?: boolean | undefined;
53
51
  validate?: boolean | undefined;
54
52
  }[];
55
- plugins: import("rollup").Plugin[];
53
+ plugins: import("rollup").Plugin<any>[];
56
54
  }[]>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.21.0",
2
+ "version": "1.21.1",
3
3
  "name": "pkgbld",
4
4
  "license": "MIT",
5
5
  "author": "Konstantin Shutkin",
@@ -30,7 +30,7 @@
30
30
  "@niceties/logger": "^1.1.10",
31
31
  "@niceties/draftlog-appender": "^1.3.0",
32
32
  "lodash": "^4.17.21",
33
- "rollup": "^3.20.2",
33
+ "rollup": "^4.0.0",
34
34
  "rollup-plugin-typescript2": "^0.36.0",
35
35
  "rollup-plugin-preprocess": "^0.0.4",
36
36
  "@rollup/plugin-commonjs": "^25.0.0",
@@ -50,7 +50,7 @@
50
50
  "devDependencies": {
51
51
  "@types/lodash": "^4.14.192",
52
52
  "@total-typescript/ts-reset": "^0.5.1",
53
- "options": "0.0.0"
53
+ "options": "0.0.1"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "typescript": "^5.2.2"