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:
Caleb Jasik 2021-06-16 13:09:35 -05:00 committed by GitHub
parent 7fdb7ceca6
commit f9f2da458d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,8 @@
---
'astro': patch
'@astrojs/parser': patch
'@astrojs/prism': patch
'@astrojs/markdown-support': patch
---
Add repository key to all package.json

View file

@ -0,0 +1,5 @@
---
'create-astro': patch
---
Add repository key to package.json for create-astro

View file

@ -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",

View file

@ -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"
],

View file

@ -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"

View file

@ -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",

View file

@ -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"
},

View file

@ -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"
},