Skip to content

Commit

Permalink
chore(scripts): revert convert symlinkDependencies script to ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Oct 18, 2023
1 parent a585c40 commit b78662e
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions scripts/symlinkDependencies.ts → scripts/symlinkDependencies.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
#!/usr/bin/env node
/* eslint-disable no-sync, no-console, strict */
/**
* **************************************************************
* This script needs to stay as a CommonJS/JavaScript file
* (it's executed in node by the `CLI unit tests`, and possibly other places)
* **************************************************************
**/
'use strict'

import fs from 'fs'

import path from 'path'
import rimraf from 'rimraf'
import minimist from 'minimist'
const fs = require('fs')
const path = require('path')
const rimraf = require('rimraf')
const minimist = require('minimist')

const argv = minimist(process.argv.slice(2), {boolean: ['all']})

Expand All @@ -15,9 +20,9 @@ if (!targetDir) {
throw new Error('Target directory must be specified (`.` for current dir)')
}

const notSanity = (dir: string) => dir !== '@sanity'
const prefix = (name: string) => `@sanity/${name}`
const normalize = (dir: string) => dir.replace(/@sanity\//g, `@sanity${path.sep}`)
const notSanity = (dir) => dir !== '@sanity'
const prefix = (name) => `@sanity/${name}`
const normalize = (dir) => dir.replace(/@sanity\//g, `@sanity${path.sep}`)

const pkgPath = path.join(__dirname, '..', 'packages')
const rootPackages = fs.readdirSync(pkgPath).filter(notSanity)
Expand Down

0 comments on commit b78662e

Please sign in to comment.