4067151aec
* chore(actions): test new CI action * chore(actions): switch action order * chore(actions): update registry * chore(actions): remove debug * chore(actions): target all packages * chore(actions): test artifacts * chore(actions): try moving artifacts * chore(actions): test moving * chore(actions): test tar approach * chore(actions): test tar approach * chore(actions): use artifacts/packages before tar * chore(actions): test mv -vn * chore(actions): mkdir first * chore(actions): how does tar work? * chore(actions): so good at bash * chore(actions): test matrix * chore(actions): fix test matrix * chore(actions): fix windows? * chore(actions): fix windows? * chore(actions): fix windows! * chore(actions): fix windows! * chore(actions): add lint * chore(actions): add back old actions * chore(actions): test notification action * chore(actions): test notification action again * chore(actions): fix extract action * chore(actions): fix action? * chore(actions): fix action? * chore(actions): fix newlines * chore(actions): test --production flag * chore(actions): test --production flag for test * chore(actions): add execa to production deps * chore(actions): add cheerio to production deps * chore(actions): add production deps for tested examples * chore(actions): fix changelog action * chore(actions): attempt to use --prefer-offline * chore(actions): revert dependencies/devDependencies change * chore(actions): update all actions * chore(actions): add smoke test * chore(actions): update changelog deps * chore(actions): move notify script * chore(actions): consolidate main scripts * chore(actions): update changelog name * chore(actions): update congratsbot * chore(actions): update ci * chore(actions): change lint/format strategy * chore(actions): expose GITHUB_TOKEN to linter * chore(actions): update lint * chore(actions): enable autofix * chore(actions): fetch-depth 0 * chore(actions): fix eslint extensions * chore(actions): debug lint * chore(actions): fix eslint args * chore(actions): fix eslint? * [ci] ESLint fix * [ci] Prettier fix * chore(actions): fix lint! * chore(actions): cleanup comments * chore(actions): fix lint * chore(actions): lint astro only * chore(actions): ignore pattern * chore(actions): no_verify * chore(actions): disable no verify * chore(actions): debug status * chore(actions): add concurrency * chore(actions): add comment about concurrency * chore(actions): make release dependent on lint * chore(actions): move lint first * chore(actions): run CI on PR or `main` only * chore(actions): remove GPR publish step * chore: add back old actions * chore: revert package.json * chore: improve changelog with GitHub info * chore(actions): try pull_request_target * debug lint * debug lint * debug lint * try pull_request_target * update pull_request_target perms * update pull_request_target * fix perms * fix run? * fix run? * fix run? (part 3) * fix run? (part 4) * fix run? (part 5) * fix run! * fix run!! * fix run!!! * fix run!!!! * fix run!!!!! * fix run!!!!!! * add comment about forks Co-authored-by: GitHub Actions <actions-user@github.com>
64 lines
2 KiB
JSON
64 lines
2 KiB
JSON
{
|
|
"name": "root",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/withastro/astro.git"
|
|
},
|
|
"scripts": {
|
|
"release": "yarn build:all && changeset publish",
|
|
"benchmark": "yarn workspace astro run benchmark",
|
|
"build": "yarn build:core",
|
|
"build:one": "lerna run build --scope",
|
|
"build:all": "lerna run build --scope \"{astro,create-astro,@astrojs/*}\"",
|
|
"build:core": "lerna run build --scope \"{astro,@astrojs/parser,@astrojs/markdown-remark}\"",
|
|
"dev": "yarn dev:core --parallel --stream",
|
|
"dev:one": "lerna run dev --scope --parallel --stream",
|
|
"dev:all": "lerna run dev --scope \"{astro,create-astro,@astrojs/*}\" --parallel --stream",
|
|
"dev:core": "lerna run dev --scope \"{astro,@astrojs/parser,@astrojs/markdown-remark}\" --parallel --stream",
|
|
"format": "prettier -w .",
|
|
"lint": "eslint \"packages/**/*.ts\"",
|
|
"test": "yarn workspace astro run test",
|
|
"test:templates": "lerna run test --scope create-astro --stream"
|
|
},
|
|
"workspaces": [
|
|
"compiled/*",
|
|
"packages/markdown/*",
|
|
"packages/renderers/*",
|
|
"packages/*",
|
|
"examples/*",
|
|
"scripts",
|
|
"www",
|
|
"docs",
|
|
"packages/astro/test/fixtures/builtins/packages/*",
|
|
"packages/astro/test/fixtures/builtins-polyfillnode",
|
|
"packages/astro/test/fixtures/custom-elements/my-component-lib"
|
|
],
|
|
"volta": {
|
|
"node": "14.17.0",
|
|
"npm": "7.11.2",
|
|
"yarn": "1.22.10"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.4.2",
|
|
"@changesets/cli": "^2.16.0",
|
|
"@octokit/action": "^3.15.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
"del": "^6.0.0",
|
|
"esbuild": "0.13.7",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"execa": "^5.0.0",
|
|
"lerna": "^4.0.0",
|
|
"prettier": "^2.4.1",
|
|
"tiny-glob": "^0.2.8",
|
|
"typescript": "4.4.4"
|
|
},
|
|
"engines": {
|
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
}
|
|
}
|