Skip to content

Commit 5e0fdab

Browse files
committed
feat: fix deps
1 parent e27cbcb commit 5e0fdab

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"start": "turbo run start",
1111
"docs": "dumi dev",
1212
"docs:build": "pnpm i && rm -rf package-lock.json && npm run build && dumi build",
13+
"version": "changeset version",
1314
"logs": "cd packages/studio-website/server && npm run logs",
14-
"publish": "pnpm publish -r --registry=https://registry.npmjs.org"
15+
"publish": "pnpm publish -r --registry=https://registry.npmjs.org --dry-run"
1516
},
1617
"husky": {
1718
"hooks": {
@@ -51,6 +52,7 @@
5152
"@babel/plugin-proposal-private-methods": "^7.18.6",
5253
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
5354
"@babel/preset-react": "^7.24.7",
55+
"@changesets/cli": "^2.27.7",
5456
"@types/node": "latest",
5557
"@types/react": "18.2.0",
5658
"@types/react-dom": "18.2.0",

packages/gsp/gsp/template/querying.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
// 必须的两个脚本加载完成后,再加载其他的 JavaScript 文件
3838
return Promise.all([
3939
loadScript('http://127.0.0.1:5500/packages/studio-query/dist/index.min.js'),
40-
loadScript('http://127.0.0.1:5500/packages/studio-query/dist/5.index.min.js'),
41-
loadScript('http://127.0.0.1:5500/packages/studio-query/dist/597.index.min.js'),
4240
loadCSS('http://127.0.0.1:5500/packages/studio-query/dist/index.css'),
4341
]);
4442
})

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = (env, argv) => {
2323
: [
2424
new MiniCssExtractPlugin(),
2525
new webpack.ProvidePlugin({
26-
process: 'process/browser',
26+
// process: 'process/browser',
2727
Buffer: ['buffer', 'Buffer'],
2828
}),
2929
];

0 commit comments

Comments
 (0)