Skip to content

Commit

Permalink
Merge branch 'master' into yoann/move-sourcemaps
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannmoinet authored Feb 6, 2025
2 parents 040297c + f3a8fb4 commit 8bb2a78
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Datadog
Copyright (c) 2025 Datadog

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Datadog build-plugins
Copyright 2024-present Datadog, Inc.
Copyright 2025-present Datadog, Inc.

This product includes software developed at Datadog (https://www.datadoghq.com/).
2 changes: 1 addition & 1 deletion packages/published/esbuild-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@datadog/esbuild-plugin",
"packageManager": "[email protected]",
"version": "2.4.0",
"version": "2.4.1",
"license": "MIT",
"author": "Datadog",
"description": "Datadog ESBuild Plugin",
Expand Down
3 changes: 2 additions & 1 deletion packages/published/esbuild-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Anything between #types-export-injection-marker
// will be updated using the 'yarn cli integrity' command.

import type { Options } from '@dd/core/types';
import * as factory from '@dd/factory';
import esbuild from 'esbuild';

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

export type { Options as EsbuildPluginOptions } from '@dd/core/types';
export type EsbuildPluginOptions = Options;

export type {
// #types-export-injection-marker
Expand Down
2 changes: 1 addition & 1 deletion packages/published/rollup-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@datadog/rollup-plugin",
"packageManager": "[email protected]",
"version": "2.4.0",
"version": "2.4.1",
"license": "MIT",
"author": "Datadog",
"description": "Datadog Rollup Plugin",
Expand Down
3 changes: 2 additions & 1 deletion packages/published/rollup-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Anything between #types-export-injection-marker
// will be updated using the 'yarn cli integrity' command.

import type { Options } from '@dd/core/types';
import * as factory from '@dd/factory';
import rollup from 'rollup';

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

export type { Options as RollupPluginOptions } from '@dd/core/types';
export type RollupPluginOptions = Options;

export type {
// #types-export-injection-marker
Expand Down
2 changes: 1 addition & 1 deletion packages/published/rspack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@datadog/rspack-plugin",
"packageManager": "[email protected]",
"version": "2.4.0",
"version": "2.4.1",
"license": "MIT",
"author": "Datadog",
"description": "Datadog Rspack Plugin",
Expand Down
3 changes: 2 additions & 1 deletion packages/published/rspack-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Anything between #types-export-injection-marker
// will be updated using the 'yarn cli integrity' command.

import type { Options } from '@dd/core/types';
import * as factory from '@dd/factory';
import rspack from '@rspack/core';

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

export type { Options as RspackPluginOptions } from '@dd/core/types';
export type RspackPluginOptions = Options;

export type {
// #types-export-injection-marker
Expand Down
2 changes: 1 addition & 1 deletion packages/published/vite-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@datadog/vite-plugin",
"packageManager": "[email protected]",
"version": "2.4.0",
"version": "2.4.1",
"license": "MIT",
"author": "Datadog",
"description": "Datadog Vite Plugin",
Expand Down
3 changes: 2 additions & 1 deletion packages/published/vite-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Anything between #types-export-injection-marker
// will be updated using the 'yarn cli integrity' command.

import type { Options } from '@dd/core/types';
import * as factory from '@dd/factory';
import vite from 'vite';

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

export type { Options as VitePluginOptions } from '@dd/core/types';
export type VitePluginOptions = Options;

export type {
// #types-export-injection-marker
Expand Down
2 changes: 1 addition & 1 deletion packages/published/webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@datadog/webpack-plugin",
"packageManager": "[email protected]",
"version": "2.4.0",
"version": "2.4.1",
"license": "MIT",
"author": "Datadog",
"description": "Datadog Webpack Plugin",
Expand Down
3 changes: 2 additions & 1 deletion packages/published/webpack-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Anything between #types-export-injection-marker
// will be updated using the 'yarn cli integrity' command.

import type { Options } from '@dd/core/types';
import * as factory from '@dd/factory';
import webpack from 'webpack';

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

export type { Options as WebpackPluginOptions } from '@dd/core/types';
export type WebpackPluginOptions = Options;

export type {
// #types-export-injection-marker
Expand Down

0 comments on commit 8bb2a78

Please sign in to comment.