Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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: 5 additions & 2 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
"linked": [],
"access": "restricted",
"baseBranch": "main",
"privatePackages": {
"version": false,
"tag": false
},
"fixed": [["@rslib/*", "rsbuild-plugin-dts", "create-rslib"]],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true,
"updateInternalDependents": "always"
},
"updateInternalDependencies": "patch",
"ignore": []
"updateInternalDependencies": "patch"
}
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"private": true,
"workspaces": {
"packages": [
"packages/*"
"packages/*",
"scripts/*",
"tests/**",
"examples/**",
"website"
]
},
"scripts": {
Expand Down
6 changes: 5 additions & 1 deletion 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 tests/integration/cli/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test.todo('build command', async () => {});

test('inspect command', async () => {
await fse.remove(path.join(__dirname, 'dist'));
execSync('npx rslib inspect', {
execSync('pnpm run inspect', {
cwd: __dirname,
});

Expand Down
8 changes: 7 additions & 1 deletion tests/integration/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,11 @@
"name": "cli-test",
"version": "1.0.0",
"private": true,
"type": "module"
"type": "module",
"scripts": {
"inspect": "rslib inspect"
},
"devDependencies": {
"@rslib/core": "workspace:*"
}
}
Loading