Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support modify bundle name #499

Closed
wants to merge 16 commits into from
Closed
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
5 changes: 5 additions & 0 deletions .changeset/khaki-pigs-joke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@ice/pkg': patch
---

feat: support modify bundle name
30 changes: 30 additions & 0 deletions examples/react-component/docs/usage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
sidebar_label: 用法
---

本 Demo 演示一行文字的用法。

```tsx preview
import * as React from 'react';
import Component from 'example-pkg-react-component';

export default function App () {
return (
<Component />
)
}
```

```tsx preview
import * as React from 'react';
import Component from 'example-pkg-react-component';

export default function App () {
return (
<>
<h1>I am Component</h1>
<Component />
</>
)
}
```
4 changes: 2 additions & 2 deletions packages/pkg/src/helpers/getRollupOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ function getRollupOutputs({
sourcemap: bundleTaskConfig.sourcemap,
exports: 'auto',
dir: outputDir,
assetFileNames: getFilename('[name]', format, esVersion, mode, '[ext]'),
entryFileNames: getFilename('[name]', format, esVersion, mode, 'js'),
assetFileNames: getFilename(bundleTaskConfig.filename || '[name]', format, esVersion, mode, '[ext]'),
entryFileNames: getFilename(bundleTaskConfig.filename || '[name]', format, esVersion, mode, 'js'),
chunkFileNames: getFilename('[hash]', format, esVersion, mode, 'js'),
manualChunks: format !== 'umd' ? ((id) => {
if (id.includes('node_modules')) {
Expand Down
6 changes: 6 additions & 0 deletions packages/pkg/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ export interface BundleUserConfig {
* @default package.name
*/
name?: string;
/**
* The filename of the output file.
* For example: set `test` to the filename config, the output filename is test.umd.es5.production.js
* @default the entry name
*/
filename?: string;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里会是函数吗? 考虑不同 task 下参数不同的情况

/**
* Output directory
* @default 'dist'
Expand Down
4 changes: 4 additions & 0 deletions packages/plugin-docusaurus/src/Previewer/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
height: 720px;
}

.mobile-previewer > div:nth-child(1) {
width: calc(100% - 375px);
}

iframe body::-webkit-scrollbar {
display: none; /* Chrome Safari */
}
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

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

24 changes: 24 additions & 0 deletions website/docs/reference/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,30 @@ export default defineConfig({
});
```

#### filename

+ 类型:`string`
+ 默认值:`[entryName]`

设置打包产物的文件名。

```ts title="build.config.mts"
import { defineConfig } from '@ice/pkg';

export default defineConfig({
bundle: {
filename: 'test'
},
});
```

则会打包生成以下的产物:

```md
./dist
└── test.esm.es5.production.js
```

#### externals

+ 类型:`boolean | Record<string, string>`
Expand Down