Skip to content

Commit

Permalink
chore: move tools utils into a utils folder
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Mar 1, 2023
1 parent 42cc605 commit 5a92199
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tools/createVanillaPackageJson.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import path from 'path'
import { readFileSync, writeFileSync } from 'fs'
import { getAbsolutePath } from './getAbsolutePath.mjs'
import { getFilesRecursively } from './getFilesRecursively.js'
import { getAbsolutePath } from './utils/getAbsolutePath.mjs'
import { getFilesRecursively } from './utils/getFilesRecursively.js'

const vanillaPackageFolder = getAbsolutePath(import.meta.url, '..', 'package-vanilla')

Expand Down
2 changes: 1 addition & 1 deletion tools/postprocessVanillaTypes.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { readFileSync, writeFileSync } from 'fs'
import { getAbsolutePath } from './getAbsolutePath.mjs'
import { getAbsolutePath } from './utils/getAbsolutePath.mjs'

const declareModuleSection = `declare module '*.svelte' {
export { SvelteComponentDev as default } from 'svelte/internal';
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 5a92199

Please sign in to comment.