Skip to content

Commit d7b1b84

Browse files
committedAug 1, 2023
chore: fix import order
1 parent 10bf0ee commit d7b1b84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎scripts/publish.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { branchConfigs, latestBranch, packages, rootDir } from './config'
2-
import type { BranchConfig, Commit, Package } from './types'
31

42
// Originally ported to TS from https://github.com/remix-run/react-router/tree/main/scripts/{version,publish}.js
53
import path from 'path'
@@ -13,6 +11,8 @@ import log from 'git-log-parser'
1311
import streamToArray from 'stream-to-array'
1412
import axios from 'axios'
1513
import { DateTime } from 'luxon'
14+
import { branchConfigs, latestBranch, packages, rootDir } from './config'
15+
import type { BranchConfig, Commit, Package } from './types'
1616

1717
import type { PackageJson } from 'type-fest'
1818

‎scripts/validate-packages.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { packages, rootDir } from './config'
21
import path from 'path'
32
import fsp from 'fs/promises'
43
import jsonfile from 'jsonfile'
4+
import { packages, rootDir } from './config'
55

66
import type { PackageJson } from 'type-fest'
77

0 commit comments

Comments
 (0)
Please sign in to comment.