Skip to content

[core] Re-use latest code infra scripts from core repo #1662

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

Merged
merged 1 commit into from
Apr 24, 2025
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
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"release:changelog": "node scripts/releaseChangelog.mjs",
"release:publish": "pnpm publish --recursive --tag latest",
"release:publish:dry-run": "pnpm publish --recursive --tag latest --registry=\"http://localhost:4873/\"",
"release:tag": "node scripts/releaseTag.mjs",
"release:tag": "node scripts/releaseTag.mjs --repo base-ui",
"docs:api": "pnpm --filter api-docs-builder start",
"docs:build": "pnpm --filter docs build",
"docs:deploy": "pnpm --filter docs run deploy",
Expand Down Expand Up @@ -54,6 +54,7 @@
"inline-scripts": "tsx ./scripts/inlineScripts.mts"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@argos-ci/core": "^3.1.1",
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
Expand All @@ -64,6 +65,7 @@
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"@babel/register": "^7.25.9",
"@mui/internal-babel-plugin-resolve-imports": "2.0.0",
"@mui/internal-docs-utils": "^2.0.1",
"@mui/internal-markdown": "^2.0.4",
"@mui/internal-scripts": "^2.0.7",
Expand Down Expand Up @@ -129,6 +131,7 @@
"prettier-plugin-tailwindcss": "^0.6.11",
"pretty-quick": "^4.1.1",
"process": "^0.11.10",
"publint": "^0.3.9",
"react": "^19.1.0",
"react-docgen": "^5.4.3",
"react-dom": "^19.1.0",
Expand Down
8 changes: 3 additions & 5 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@
"scripts": {
"prebuild": "rimraf --glob build build-tests \"*.tsbuildinfo\"",
"build": "pnpm build:node && pnpm build:stable && pnpm build:types && pnpm build:copy-files && pnpm build:manifest",
"build:node": "node ../../scripts/build.mjs node",
"build:stable": "node ../../scripts/build.mjs stable",
"build:types": "tsx ../../scripts/buildTypes.mts --project tsconfig.build.json --copy build/cjs",
"build:node": "node ../../scripts/build.mjs node --cjsDir ./cjs",
"build:stable": "node ../../scripts/build.mjs stable --cjsDir ./cjs",
"build:types": "tsx ../../scripts/buildTypes.mts --copy build/cjs",
"build:copy-files": "node ../../scripts/copyFiles.mjs ./.npmignore:./.npmignore",
"build:manifest": "tsx ./scripts/createPackageManifest.mts",
"test:package": "publint ./build && attw --pack ./build",
Expand All @@ -89,7 +89,6 @@
"use-sync-external-store": "^1.5.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@mui/internal-test-utils": "^2.0.7",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
Expand All @@ -102,7 +101,6 @@
"chai": "^4.5.0",
"fs-extra": "^11.3.0",
"lodash": "^4.17.21",
"publint": "^0.3.12",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.5.1",
Expand Down
Loading