@tramvai/build 3.0.6 → 3.0.7

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.
@@ -1,12 +1,12 @@
1
1
  import type { RollupOptions, OutputOptions } from 'rollup';
2
2
  import type { Options } from '../options.h';
3
3
  import type { PackageJSON } from '../packageJson';
4
- export declare type BuildParams = {
4
+ export type BuildParams = {
5
5
  cwd: string;
6
6
  options: Options;
7
7
  packageJSON: PackageJSON;
8
8
  };
9
- export declare type Build = {
9
+ export type Build = {
10
10
  name: string;
11
11
  cacheName?: string;
12
12
  shouldExecute(params: BuildParams): Promise<boolean>;
@@ -16,4 +16,4 @@ export declare type Build = {
16
16
  }>;
17
17
  modifyPackageJSON?(params: BuildParams): Promise<PackageJSON>;
18
18
  };
19
- export declare type Postfix = '.js' | '.es.js' | '.browser.js';
19
+ export type Postfix = '.js' | '.es.js' | '.browser.js';
@@ -1,4 +1,4 @@
1
- export declare type Options = {
1
+ export type Options = {
2
2
  sourceDir: string;
3
3
  copyStaticAssets: boolean;
4
4
  watchMode?: boolean;
@@ -1,4 +1,4 @@
1
- export declare type PackageJSON = {
1
+ export type PackageJSON = {
2
2
  name: string;
3
3
  version: string;
4
4
  main: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/build",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "description": "Rollup wrapper, build multiple bundles for different module systems",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {