Commit cc809d1b authored by Tomas Vik (OOO back on 2026-08-31)'s avatar Tomas Vik (OOO back on 2026-08-31) 🌴
Browse files

fix: add uuid to ESM-to-CJS transpile list and fix prettier formatting

parent 5015fec5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -21,7 +21,9 @@ module.exports = {
    ],
  ],
  testPathIgnorePatterns: ['/node_modules/', '<rootDir>/webviews/', '/dist-/'],
  transformIgnorePatterns: ['/node_modules/(?!(@anycable/core|p-queue|p-timeout|nanoevents|uuid)/)'],
  transformIgnorePatterns: [
    '/node_modules/(?!(@anycable/core|p-queue|p-timeout|nanoevents|uuid)/)',
  ],
  transform: {
    // why: For some reason, ts-jest was not working for these node_modules
    //      using babel-jest with a target of `node`, we're good to go.
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ async function processModule(module) {
}

async function main() {
  const modules = ['@anycable/core', 'nanoevents', 'p-queue', 'p-timeout'];
  const modules = ['@anycable/core', 'nanoevents', 'p-queue', 'p-timeout', 'uuid'];

  await Promise.all(modules.map(module => processModule(module)));
}