Add repository remotes for all astro packages (#458)
* Add repository remotes for all astro packages * Add repository.directory key instead of adding the path to repository.url * Include changeset * Add repository key to create-astro
This commit is contained in:
parent
7fdb7ceca6
commit
f9f2da458d
8 changed files with 42 additions and 0 deletions
8
.changeset/eleven-cats-tan.md
Normal file
8
.changeset/eleven-cats-tan.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
'astro': patch
|
||||
'@astrojs/parser': patch
|
||||
'@astrojs/prism': patch
|
||||
'@astrojs/markdown-support': patch
|
||||
---
|
||||
|
||||
Add repository key to all package.json
|
5
.changeset/rare-weeks-explode.md
Normal file
5
.changeset/rare-weeks-explode.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'create-astro': patch
|
||||
---
|
||||
|
||||
Add repository key to package.json for create-astro
|
|
@ -2,6 +2,10 @@
|
|||
"name": "root",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/snowpackjs/astro.git"
|
||||
},
|
||||
"scripts": {
|
||||
"release": "yarn build && yarn changeset publish",
|
||||
"benchmark": "yarn workspace astro run benchmark",
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
"type": "commonjs",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/snowpackjs/astro.git",
|
||||
"directory": "packages/astro-parser"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
"version": "0.2.1",
|
||||
"description": "IYKYK",
|
||||
"main": "index.mjs",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/snowpackjs/astro.git",
|
||||
"directory": "packages/astro-prism"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "echo 'build'",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
|
|
|
@ -5,6 +5,11 @@
|
|||
"license": "MIT",
|
||||
"type": "module",
|
||||
"types": "./dist/types",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/snowpackjs/astro.git",
|
||||
"directory": "packages/astro"
|
||||
},
|
||||
"exports": {
|
||||
".": "./astro.mjs",
|
||||
"./package.json": "./package.json",
|
||||
|
|
|
@ -2,6 +2,11 @@
|
|||
"name": "create-astro",
|
||||
"version": "0.3.2",
|
||||
"type": "module",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/snowpackjs/astro.git",
|
||||
"directory": "packages/create-astro"
|
||||
},
|
||||
"exports": {
|
||||
".": "./create-astro.js"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
"version": "0.1.1",
|
||||
"main": "./dist/index.js",
|
||||
"type": "commonjs",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/snowpackjs/astro.git",
|
||||
"directory": "packages/markdown-support"
|
||||
},
|
||||
"exports": {
|
||||
".": "./dist/index.js"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue