Skip to content

Commit 8bb2a78

Browse files
authored
Merge branch 'master' into yoann/move-sourcemaps
2 parents 040297c + f3a8fb4 commit 8bb2a78

12 files changed

Lines changed: 17 additions & 12 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Datadog
3+
Copyright (c) 2025 Datadog
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Datadog build-plugins
2-
Copyright 2024-present Datadog, Inc.
2+
Copyright 2025-present Datadog, Inc.
33

44
This product includes software developed at Datadog (https://www.datadoghq.com/).

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": "yarn@4.0.2",
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": "yarn@4.0.2",
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": "yarn@4.0.2",
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": "yarn@4.0.2",
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

0 commit comments

Comments
 (0)