Skip to content

Commit

Permalink
build(deps-dev): bump @rollup/plugin-typescript from 11.1.6 to 12.1.1 (
Browse files Browse the repository at this point in the history
…#1646)

* build(deps-dev): bump @rollup/plugin-typescript from 11.1.6 to 12.1.1

Bumps [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) from 11.1.6 to 12.1.1.
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.1/packages/typescript)

---
updated-dependencies:
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fixes rollup config

* Fix rollup config for storefront-api-client

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Si Le <[email protected]>
  • Loading branch information
dependabot[bot] and sle-c authored Nov 11, 2024
1 parent 18b341a commit 280c82e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-typescript": "^12.1.1",
"@shopify/babel-preset": "^25.0.0",
"@shopify/eslint-plugin": "^45.0.0",
"@shopify/prettier-config": "^1.1.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/api-clients/graphql-client/rollup.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const config = [
{
input: clientSrcInput,
plugins: getPlugins({
outDir: './dist/ts',
outDir: './dist/umd',
minify: true,
tsconfig: './tsconfig.umd.json',
replacements: {ROLLUP_REPLACE_CLIENT_VERSION: pkg.version},
Expand All @@ -35,7 +35,7 @@ const config = [
{
input: clientSrcInput,
plugins: getPlugins({
outDir: './dist/ts',
outDir: './dist/umd',
tsconfig: './tsconfig.umd.json',
replacements: {ROLLUP_REPLACE_CLIENT_VERSION: pkg.version},
bundleDependencies: true,
Expand Down
4 changes: 2 additions & 2 deletions packages/api-clients/storefront-api-client/rollup.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const config = [
{
input: mainSrcInput,
plugins: getPlugins({
outDir: './dist/ts',
outDir: './dist/umd',
minify: true,
tsconfig: './tsconfig.umd.json',
replacements: {ROLLUP_REPLACE_CLIENT_VERSION: pkg.version},
Expand All @@ -34,7 +34,7 @@ const config = [
{
input: mainSrcInput,
plugins: getPlugins({
outDir: './dist/ts',
outDir: './dist/umd',
tsconfig: './tsconfig.umd.json',
replacements: {ROLLUP_REPLACE_CLIENT_VERSION: pkg.version},
bundleDependencies: true,
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 280c82e

Please sign in to comment.