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",
|
"name": "root",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/snowpackjs/astro.git"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"release": "yarn build && yarn changeset publish",
|
"release": "yarn build && yarn changeset publish",
|
||||||
"benchmark": "yarn workspace astro run benchmark",
|
"benchmark": "yarn workspace astro run benchmark",
|
||||||
|
|
|
@ -6,6 +6,11 @@
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/snowpackjs/astro.git",
|
||||||
|
"directory": "packages/astro-parser"
|
||||||
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
"version": "0.2.1",
|
"version": "0.2.1",
|
||||||
"description": "IYKYK",
|
"description": "IYKYK",
|
||||||
"main": "index.mjs",
|
"main": "index.mjs",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/snowpackjs/astro.git",
|
||||||
|
"directory": "packages/astro-prism"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "echo 'build'",
|
"build": "echo 'build'",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
|
|
@ -5,6 +5,11 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/types",
|
"types": "./dist/types",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/snowpackjs/astro.git",
|
||||||
|
"directory": "packages/astro"
|
||||||
|
},
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./astro.mjs",
|
".": "./astro.mjs",
|
||||||
"./package.json": "./package.json",
|
"./package.json": "./package.json",
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
"name": "create-astro",
|
"name": "create-astro",
|
||||||
"version": "0.3.2",
|
"version": "0.3.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/snowpackjs/astro.git",
|
||||||
|
"directory": "packages/create-astro"
|
||||||
|
},
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./create-astro.js"
|
".": "./create-astro.js"
|
||||||
},
|
},
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
"version": "0.1.1",
|
"version": "0.1.1",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/snowpackjs/astro.git",
|
||||||
|
"directory": "packages/markdown-support"
|
||||||
|
},
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./dist/index.js"
|
".": "./dist/index.js"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue