Skip to content

Commit 340e570

Browse files
authoredJul 21, 2023
build: Fix README version update (#294)
1 parent a4f7cc9 commit 340e570

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function App() {
7878
<seam-device-table publishable-key="your_publishable_key"></seam-device-table>
7979
<script
8080
type="module"
81-
src="https://react.seam.co/v/_________VERSION_________/dist/elements.js"
81+
src="https://react.seam.co/v/1.31.0/dist/elements.js"
8282
></script>
8383
</body>
8484
```

‎preversion.ts

+9-13
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
import { readFile, writeFile } from 'node:fs/promises'
22
import { fileURLToPath } from 'node:url'
33

4-
import { $ } from 'execa'
5-
6-
import { readPackageJson } from './vite.config.js'
7-
8-
export const files = ['./README.md']
9-
10-
export const versionPlaceholder = '_________VERSION_________'
4+
import {
5+
readPackageJson,
6+
versionFiles,
7+
versionPlaceholder,
8+
} from './vite.config.js'
119

1210
const main = async (): Promise<void> => {
1311
await Promise.all(
14-
files.map(async (file) => {
15-
const version = await injectVersionPlaceholder(
12+
versionFiles.map(async (file) => {
13+
await injectVersionPlaceholder(
1614
fileURLToPath(new URL(file, import.meta.url))
1715
)
1816
// eslint-disable-next-line no-console
19-
console.log(`✓ Version ${version} injected into ${file}`)
20-
await $`git add ${file}`
17+
console.log(`✓ Version placeholder injected into ${file}`)
2118
})
2219
)
2320
}
2421

25-
const injectVersionPlaceholder = async (path: string): Promise<string> => {
22+
const injectVersionPlaceholder = async (path: string): Promise<void> => {
2623
const { version } = await readPackageJson()
2724

2825
if (version == null) {
@@ -32,7 +29,6 @@ const injectVersionPlaceholder = async (path: string): Promise<string> => {
3229
const buff = await readFile(path)
3330
const data = buff.toString().replaceAll(version, versionPlaceholder)
3431
await writeFile(path, data)
35-
return version
3632
}
3733

3834
await main()

‎version.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
import { readFile, writeFile } from 'node:fs/promises'
22
import { fileURLToPath } from 'node:url'
33

4-
import { files, versionPlaceholder } from './preversion.js'
5-
import { readPackageJson } from './vite.config.js'
4+
import { $ } from 'execa'
5+
6+
import {
7+
readPackageJson,
8+
versionFiles,
9+
versionPlaceholder,
10+
} from './vite.config.js'
611

712
const main = async (): Promise<void> => {
813
await Promise.all(
9-
files.map(async (file) => {
14+
versionFiles.map(async (file) => {
1015
const version = await injectVersion(
1116
fileURLToPath(new URL(file, import.meta.url))
1217
)
1318
// eslint-disable-next-line no-console
1419
console.log(`✓ Version ${version} injected into ${file}`)
20+
await $`git add ${file}`
1521
})
1622
)
1723
}

‎vite.config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,7 @@ export const readPackageJson = async (): Promise<{ version?: string }> => {
3939
)
4040
return JSON.parse(pkgBuff.toString())
4141
}
42+
43+
export const versionFiles = ['./README.md']
44+
45+
export const versionPlaceholder = '_________VERSION_________'

0 commit comments

Comments
 (0)
Please sign in to comment.