2021-04-27 20:59:23 +00:00
|
|
|
{
|
2021-05-03 17:47:51 +00:00
|
|
|
"name": "create-astro",
|
2023-01-24 16:38:06 +00:00
|
|
|
"version": "2.0.0",
|
2021-05-03 17:47:51 +00:00
|
|
|
"type": "module",
|
2021-12-13 21:14:34 +00:00
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
2021-06-16 18:09:35 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-11-23 22:47:05 +00:00
|
|
|
"url": "https://github.com/withastro/astro.git",
|
2021-06-16 18:09:35 +00:00
|
|
|
"directory": "packages/create-astro"
|
|
|
|
},
|
2021-12-13 21:14:34 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
|
|
"homepage": "https://astro.build",
|
2021-05-03 17:47:51 +00:00
|
|
|
"exports": {
|
2021-12-07 18:21:42 +00:00
|
|
|
".": "./create-astro.mjs"
|
2021-05-03 17:47:51 +00:00
|
|
|
},
|
|
|
|
"bin": {
|
2021-06-08 15:10:56 +00:00
|
|
|
"create-astro": "./create-astro.mjs"
|
2021-05-03 17:47:51 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-07-22 00:39:14 +00:00
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-03-24 00:46:16 +00:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2021-07-22 00:39:14 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
2022-04-21 20:36:48 +00:00
|
|
|
"test": "mocha --exit --timeout 20000"
|
2021-05-03 17:47:51 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
2022-08-06 04:06:18 +00:00
|
|
|
"create-astro.js",
|
|
|
|
"tsconfigs"
|
2021-05-03 17:47:51 +00:00
|
|
|
],
|
|
|
|
"dependencies": {
|
2022-12-16 20:48:03 +00:00
|
|
|
"@astrojs/cli-kit": "^0.1.6",
|
2022-05-11 16:38:42 +00:00
|
|
|
"chalk": "^5.0.1",
|
2022-08-25 19:15:27 +00:00
|
|
|
"comment-json": "^4.2.3",
|
2022-04-26 15:24:24 +00:00
|
|
|
"execa": "^6.1.0",
|
2022-12-14 19:08:44 +00:00
|
|
|
"giget": "^1.0.0",
|
2022-03-11 22:38:28 +00:00
|
|
|
"kleur": "^4.1.4",
|
2022-03-21 17:33:31 +00:00
|
|
|
"ora": "^6.1.0",
|
2022-03-11 22:38:28 +00:00
|
|
|
"prompts": "^2.4.2",
|
`create-astro`: always create `tsconfig.json` (#4810)
* `create-astro`: always create `tsconfig.json`
Currently, we only make sure `tsconfig.json` exists when `strict` or `strictest` is selected. Both `default` & `optout` are intended to correspond to `base` -- and will do so for all [23 official templates](https://github.com/withastro/astro/tree/main/examples), but not necessarily for third-party templates.
The [example command for installing a third-party template](https://github.com/withastro/astro/blob/a800bf7/packages/create-astro/README.md?plain=1#L31-L35) is (rather conveniently for the sake of this PR!) an example of a template without a `tsconfig.json` file, and installing it with the `default` ("Relaxed") Typescript option results in no `tsconfig.json` file, rather than a `tsconfig.json` file containing `{ "extends": "astro/tsconfigs/base" }` as would be expected.
This PR addresses this scenario.
It also explicitly sets the `tsconfig.json` file to `{ "extends": "astro/tsconfigs/base" }` when `default` (which I renamed to `base`, still presented to the user as "Relaxed") or `optout` is selected (`optout` has always printed a warning about the importance of `tsconfig.json` & `src/env.d.ts` but otherwise behaved identically to `default`). This is necessary in two scenarios:
1. When the `tsconfig.json` file was created by this script.
2. When it either didn't already include `"extends"`, or it extended a different config by default. For example, some third-party templates might default to `strict`, in which case I'm guessing we'd want to respect the user's choice and change that to `base`.
* update `del` 6.1.1 --> 7.0.0
* test: prevent excess writes
(without this it triggers many times)
* test: create-astro typescript prompt
* changeset
* fix: recursive `mkdirSync`
* test: longer timeout for `windows-latest` OS
(see if this fixes failing tests)
* better glob path creation, don't hardcode `/`
* test: longer timeout for windows-latest OS
(since I'm about to trigger another CI run by pushing a commit, might as well try this too)
* create-astro test: show last CLI output on timeout
* drop variable timeout
Typescript tests are slower than directory tests, but they are all usually less than 5000 ms. Less complexity, easier to maintain.
* DRY new error output
* Update lockfile
* Sync lockfile with main
* Update lockfile
Co-authored-by: Princesseuh <princssdev@gmail.com>
2022-09-22 18:37:01 +00:00
|
|
|
"strip-ansi": "^7.0.1",
|
2022-07-07 18:12:31 +00:00
|
|
|
"which-pm-runs": "^1.1.0",
|
2022-03-11 22:38:28 +00:00
|
|
|
"yargs-parser": "^21.0.1"
|
2021-05-03 17:47:51 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-21 20:36:48 +00:00
|
|
|
"@types/chai": "^4.3.1",
|
2022-07-07 18:12:31 +00:00
|
|
|
"@types/degit": "^2.8.3",
|
2022-04-22 14:04:01 +00:00
|
|
|
"@types/mocha": "^9.1.1",
|
2022-07-07 18:12:31 +00:00
|
|
|
"@types/prompts": "^2.0.14",
|
|
|
|
"@types/which-pm-runs": "^1.0.0",
|
2022-03-10 15:55:40 +00:00
|
|
|
"@types/yargs-parser": "^21.0.0",
|
2022-03-08 21:46:11 +00:00
|
|
|
"astro-scripts": "workspace:*",
|
2022-04-21 20:36:48 +00:00
|
|
|
"chai": "^4.3.6",
|
|
|
|
"mocha": "^9.2.2",
|
2022-03-11 22:38:28 +00:00
|
|
|
"uvu": "^0.5.3"
|
2021-06-14 12:20:14 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-01-09 21:59:20 +00:00
|
|
|
"node": ">=16.12.0"
|
2021-05-03 17:47:51 +00:00
|
|
|
}
|
2021-04-27 20:59:23 +00:00
|
|
|
}
|