Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove leftovers
  • Loading branch information
mnajdova committed Mar 18, 2024
commit 58920b59426ced687f408b6d2a870372fe3e6c10
1 change: 0 additions & 1 deletion .codesandbox/ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"packages/mui-icons-material",
"packages/mui-joy",
"packages/mui-lab",
"packages/mui-material-next",
"packages/mui-material-nextjs",
"packages/mui-material",
"packages/mui-private-theming",
Expand Down
7 changes: 0 additions & 7 deletions docs/pages/material-ui/guides/material-3-components.js

This file was deleted.

4 changes: 0 additions & 4 deletions packages/rsc-builder/buildRsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ const PROJECTS: Project[] = [
name: 'material',
rootPath: path.join(process.cwd(), 'packages/mui-material'),
},
{
name: 'material-next',
rootPath: path.join(process.cwd(), 'packages/mui-material-next'),
},
{
name: 'joy',
rootPath: path.join(process.cwd(), 'packages/mui-joy'),
Expand Down
4 changes: 0 additions & 4 deletions scripts/coreTypeScriptProjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ export default {
rootPath: path.join(process.cwd(), 'packages/mui-system'),
entryPointPath: 'src/index.d.ts',
},
'material-next': {
rootPath: path.join(process.cwd(), 'packages/mui-material-next'),
entryPointPath: 'src/index.ts',
},
docs: {
rootPath: path.join(process.cwd(), 'docs'),
tsConfigPath: 'tsconfig.json',
Expand Down
1 change: 0 additions & 1 deletion scripts/generateProptypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ async function run(argv: HandlerArgv) {
path.resolve(__dirname, '../packages/mui-base/src'),
path.resolve(__dirname, '../packages/mui-material/src'),
path.resolve(__dirname, '../packages/mui-lab/src'),
path.resolve(__dirname, '../packages/mui-material-next/src'),
path.resolve(__dirname, '../packages/mui-joy/src'),
].map((folderPath) =>
glob('+([A-Z])*/+([A-Z])*.*@(d.ts|ts|tsx)', {
Expand Down
7 changes: 0 additions & 7 deletions test/karma.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,5 @@ baseUnitContext.keys().forEach(baseUnitContext);
const utilsContext = require.context('../packages/mui-utils/src/', true, /\.test\.(js|ts|tsx)$/);
utilsContext.keys().forEach(utilsContext);

const materialNextContext = require.context(
'../packages/mui-material-next/src/',
true,
/\.test\.(js|ts|tsx)$/,
);
materialNextContext.keys().forEach(materialNextContext);

const joyContext = require.context('../packages/mui-joy/src', true, /\.test\.(js|ts|tsx)$/);
joyContext.keys().forEach(joyContext);