Skip to content

Commit

Permalink
Disable detection for stylex plugin temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 4, 2024
1 parent 74c03fa commit 8417bdf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
File renamed without changes.
8 changes: 6 additions & 2 deletions scripts/wasm-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ const CacheSchema = z.object({
})

for (const pkg of await fs.readdir('pkgs/plugins')) {
if (!pkg.endsWith('.yml')) {
continue
}

const packageVersions = {};

const { name } = path.parse(pkg);
Expand Down Expand Up @@ -150,7 +154,7 @@ for (const pkg of await fs.readdir('pkgs/plugins')) {
if (process.env.CRAWL_SECRET) {
for (const pkg of plugin.packages) {
console.log(`Updating ${pkg}`);

const pkgs = [];
const versions = packageVersions[pkg];
for (const [version, commit] of Object.entries(versions)) {
Expand All @@ -176,7 +180,7 @@ for (const pkg of await fs.readdir('pkgs/plugins')) {
}



}

console.log(coreVersions)
Expand Down

0 comments on commit 8417bdf

Please sign in to comment.