Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/poor-pets-shave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@naverpay/pite": patch
---

🔧 Update rollup plugin dependencies to rollup-preserve-directives

PR: [🔧 Update rollup plugin dependencies to rollup-preserve-directives](https://github.com/NaverPayDev/pite/pull/86)
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:
npm_tag: canary # Specify the npm tag to use for deployment
npm_token: ${{ secrets.NPM_TOKEN }} # Provide the token required for npm publishing
publish_script: pnpm run release:canary # Script to execute Canary deployment
packages_dir: packages # Directory of packages to detect changes (default: packages,share)
packages_dir: '.'
excludes: '.turbo,.github' # Files or directories to exclude from change detection
version_template: '{VERSION}-canary.{DATE}-{COMMITID7}'
2 changes: 1 addition & 1 deletion .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
npm_tag: rc # Specify the npm tag to use for deployment
npm_token: ${{ secrets.NPM_TOKEN }} # Provide the token required for npm publishing
publish_script: pnpm run release:canary # Script to execute Canary deployment
packages_dir: packages # Directory of packages to detect changes (default: packages,share)
packages_dir: '.'
excludes: '.turbo,.github' # Files or directories to exclude from change detection
version_template: '{VERSION}-rc.{DATE}-{COMMITID7}'
create_release: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"cosmiconfig": "^9.0.0",
"glob": "^11.0.1",
"publint": "^0.3.4",
"rollup-plugin-preserve-directives": "^0.4.0",
"rollup-preserve-directives": "^1.1.3",
"rollup-plugin-visualizer": "^5.14.0",
"builtin-modules": "^5.0.0",
"builtins": "^5.1.0",
Expand Down
27 changes: 13 additions & 14 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import defaultBrowserslist from '@naverpay/browserslist-config'
import babel from '@rollup/plugin-babel'
import browserslistToEsbuild from 'browserslist-to-esbuild'
import preserveDirectives from 'rollup-plugin-preserve-directives'
import {PluginVisualizerOptions, visualizer} from 'rollup-plugin-visualizer'
import preserveDirectives from 'rollup-preserve-directives'
import {BuildOptions, defineConfig, Plugin, UserConfig} from 'vite'

import {getBrowserslistConfig} from './browserslist'
Expand Down