Skip to content

Commit 765aa0c

Browse files
committed
move decisions to the docs directory
1 parent 1abc013 commit 765aa0c

File tree

9 files changed

+1
-2
lines changed

9 files changed

+1
-2
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

remix.init/index.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const getRandomString = length => crypto.randomBytes(length).toString('hex')
1212
const main = async ({ isTypeScript, rootDirectory }) => {
1313
if (!isTypeScript) {
1414
// not throwing an error because the stack trace doesn't do anything to help the user
15-
throw `Sorry, this template only supports TypeScript. Please run the command again and select "TypeScript". Learn more about why in https://github.com/epicweb-dev/epic-stack/blob/main/decisions/01-typescript-only.md`
15+
throw `Sorry, this template only supports TypeScript. Please run the command again and select "TypeScript". Learn more about why in https://github.com/epicweb-dev/epic-stack/blob/main/docs/decisions/01-typescript-only.md`
1616
}
1717
const README_PATH = path.join(rootDirectory, 'README.md')
1818
const FLY_TOML_PATH = path.join(rootDirectory, 'fly.toml')
@@ -70,7 +70,6 @@ const main = async ({ isTypeScript, rootDirectory }) => {
7070
),
7171
fs.rm(path.join(rootDirectory, 'LICENSE.md')),
7272
fs.rm(path.join(rootDirectory, 'CONTRIBUTING.md')),
73-
fs.rm(path.join(rootDirectory, 'decisions'), { recursive: true }),
7473
fs.rm(path.join(rootDirectory, 'docs'), { recursive: true }),
7574
]
7675

0 commit comments

Comments
 (0)