Skip to content

Commit 1e6996e

Browse files
authored
Merge branch 'master' into yoann/add-more-injection-points
2 parents 7d53b78 + a6563ad commit 1e6996e

File tree

10 files changed

+15
-10
lines changed

10 files changed

+15
-10
lines changed

packages/published/esbuild-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@datadog/esbuild-plugin",
33
"packageManager": "[email protected]",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"license": "MIT",
66
"author": "Datadog",
77
"description": "Datadog ESBuild Plugin",

packages/published/esbuild-plugin/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Anything between #types-export-injection-marker
77
// will be updated using the 'yarn cli integrity' command.
88

9+
import type { Options } from '@dd/core/types';
910
import * as factory from '@dd/factory';
1011
import esbuild from 'esbuild';
1112

@@ -16,7 +17,7 @@ export const datadogEsbuildPlugin = factory.buildPluginFactory({
1617
version: pkg.version,
1718
}).esbuild;
1819

19-
export type { Options as EsbuildPluginOptions } from '@dd/core/types';
20+
export type EsbuildPluginOptions = Options;
2021

2122
export type {
2223
// #types-export-injection-marker

packages/published/rollup-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@datadog/rollup-plugin",
33
"packageManager": "[email protected]",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"license": "MIT",
66
"author": "Datadog",
77
"description": "Datadog Rollup Plugin",

packages/published/rollup-plugin/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Anything between #types-export-injection-marker
77
// will be updated using the 'yarn cli integrity' command.
88

9+
import type { Options } from '@dd/core/types';
910
import * as factory from '@dd/factory';
1011
import rollup from 'rollup';
1112

@@ -16,7 +17,7 @@ export const datadogRollupPlugin = factory.buildPluginFactory({
1617
version: pkg.version,
1718
}).rollup;
1819

19-
export type { Options as RollupPluginOptions } from '@dd/core/types';
20+
export type RollupPluginOptions = Options;
2021

2122
export type {
2223
// #types-export-injection-marker

packages/published/rspack-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@datadog/rspack-plugin",
33
"packageManager": "[email protected]",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"license": "MIT",
66
"author": "Datadog",
77
"description": "Datadog Rspack Plugin",

packages/published/rspack-plugin/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Anything between #types-export-injection-marker
77
// will be updated using the 'yarn cli integrity' command.
88

9+
import type { Options } from '@dd/core/types';
910
import * as factory from '@dd/factory';
1011
import rspack from '@rspack/core';
1112

@@ -16,7 +17,7 @@ export const datadogRspackPlugin = factory.buildPluginFactory({
1617
version: pkg.version,
1718
}).rspack;
1819

19-
export type { Options as RspackPluginOptions } from '@dd/core/types';
20+
export type RspackPluginOptions = Options;
2021

2122
export type {
2223
// #types-export-injection-marker

packages/published/vite-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@datadog/vite-plugin",
33
"packageManager": "[email protected]",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"license": "MIT",
66
"author": "Datadog",
77
"description": "Datadog Vite Plugin",

packages/published/vite-plugin/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Anything between #types-export-injection-marker
77
// will be updated using the 'yarn cli integrity' command.
88

9+
import type { Options } from '@dd/core/types';
910
import * as factory from '@dd/factory';
1011
import vite from 'vite';
1112

@@ -16,7 +17,7 @@ export const datadogVitePlugin = factory.buildPluginFactory({
1617
version: pkg.version,
1718
}).vite;
1819

19-
export type { Options as VitePluginOptions } from '@dd/core/types';
20+
export type VitePluginOptions = Options;
2021

2122
export type {
2223
// #types-export-injection-marker

packages/published/webpack-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@datadog/webpack-plugin",
33
"packageManager": "[email protected]",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"license": "MIT",
66
"author": "Datadog",
77
"description": "Datadog Webpack Plugin",

packages/published/webpack-plugin/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Anything between #types-export-injection-marker
77
// will be updated using the 'yarn cli integrity' command.
88

9+
import type { Options } from '@dd/core/types';
910
import * as factory from '@dd/factory';
1011
import webpack from 'webpack';
1112

@@ -16,7 +17,7 @@ export const datadogWebpackPlugin = factory.buildPluginFactory({
1617
version: pkg.version,
1718
}).webpack;
1819

19-
export type { Options as WebpackPluginOptions } from '@dd/core/types';
20+
export type WebpackPluginOptions = Options;
2021

2122
export type {
2223
// #types-export-injection-marker

0 commit comments

Comments
 (0)