Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"deploy:unstable": "changeset version --snapshot unstable && changeset publish --tag unstable --no-git-tag",
"predeploy:internal": "yarn build",
"deploy:internal": "changeset version --snapshot internal && changeset publish --tag internal --no-git-tag",
"gen-docs:admin": "node ./packages/ui-extensions/docs/surfaces/admin/create-doc-files.js",
"lint": "loom lint",
"nuke": "rm -rf node_modules && yarn cache clean && rm -rf .loom && git clean -xdf ./packages; rm -rf ./build",
"restore-consumer": "./scripts/restore-consumer.sh",
Expand Down
1 change: 1 addition & 0 deletions packages/ui-extensions/buildTargetDts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ function copyComponentDefinitions({
if (!existsSync(buildPath)) {
mkdirSync(buildPath, {recursive: true});
}
mkdirSync(componentsBuildPath, {recursive: true});

const exists = componentsSrcPaths.every((path) => existsSync(path));

Expand Down
62 changes: 0 additions & 62 deletions packages/ui-extensions/docs/surfaces/admin/ReadMe.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import {
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);

// Find the generated_docs_data.json file to determine output location
// Find the generated_docs_data_v2.json file to determine output location
function findGeneratedDocsPath() {
const generatedDir = path.join(__dirname, 'generated');

// Look for generated_docs_data.json recursively
// Look for generated_docs_data_v2.json recursively
function findFile(dir) {
const files = fs.readdirSync(dir);
for (const file of files) {
Expand All @@ -24,7 +24,7 @@ function findGeneratedDocsPath() {
if (stat.isDirectory()) {
const result = findFile(fullPath);
if (result) return result;
} else if (file === 'generated_docs_data.json') {
} else if (file === 'generated_docs_data_v2.json') {
return path.dirname(fullPath);
}
}
Expand Down
Loading
Loading