get build-all passing (#795)
This commit is contained in:
parent
5549f28157
commit
e31e276781
12 changed files with 23 additions and 23 deletions
|
@ -23,17 +23,6 @@ export function createCollection() {
|
|||
posts: paginate(sortedPosts, {pageSize: 2}),
|
||||
}
|
||||
},
|
||||
rss: {
|
||||
title: 'Don’s Blog',
|
||||
description: 'An example blog on Astro',
|
||||
customData: `<language>en-us</language>`,
|
||||
item: (item) => ({
|
||||
title: item.title,
|
||||
description: item.description,
|
||||
link: item.url,
|
||||
pubDate: item.date,
|
||||
}),
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ export default {
|
|||
},
|
||||
devOptions: {
|
||||
// port: 3000, // The port to run the dev server on.
|
||||
tailwindConfig: './tailwind.config.js', // Path to tailwind.config.js if used, e.g. './tailwind.config.js'
|
||||
// tailwindConfig: './tailwind.config.js', // Path to tailwind.config.js if used, e.g. './tailwind.config.js'
|
||||
},
|
||||
renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue'],
|
||||
};
|
||||
|
|
12
package.json
12
package.json
|
@ -10,11 +10,15 @@
|
|||
"release": "yarn build && yarn changeset publish",
|
||||
"benchmark": "yarn workspace astro run benchmark",
|
||||
"build": "yarn build:core",
|
||||
"build:all": "lerna run build",
|
||||
"build:one": "lerna run build --scope",
|
||||
"build:core": "lerna run build --scope astro --scope @astrojs/parser --scope @astrojs/markdown-support",
|
||||
"build:vscode": "lerna run build --scope astro-languageserver --scope astro-vscode --scope @astrojs/parser",
|
||||
"dev:vscode": "lerna run dev --scope astro-languageserver --scope astro-vscode --scope @astrojs/parser --parallel --stream",
|
||||
"build:all": "lerna run build --scope \"{astro,@astrojs/*}\"",
|
||||
"build:core": "lerna run build --scope \"{astro,@astrojs/parser,@astrojs/markdown-support}\"",
|
||||
"build:vscode": "lerna run build --scope \"{@astrojs/language-server,astro-vscode,@astrojs/parser}\"",
|
||||
"dev": "yarn dev:core --parallel --stream",
|
||||
"dev:one": "lerna run dev --scope --parallel --stream",
|
||||
"dev:all": "lerna run dev --scope \"{astro,@astrojs/*}\" --parallel --stream",
|
||||
"dev:core": "lerna run dev --scope \"{astro,@astrojs/parser,@astrojs/markdown-support}\" --parallel --stream",
|
||||
"dev:vscode": "lerna run dev --scope \"{@astrojs/language-server,astro-vscode,@astrojs/parser}\" --parallel --stream",
|
||||
"format": "prettier -w .",
|
||||
"lint": "eslint \"packages/**/*.ts\"",
|
||||
"test": "yarn workspace astro run test",
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
],
|
||||
"scripts": {
|
||||
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
||||
"postbuild": "astro-scripts copy \"src/**/*.astro\"",
|
||||
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
||||
"postbuild": "astro-scripts copy \"src/**/*.astro\"",
|
||||
"benchmark": "node test/benchmark/dev.bench.js && node test/benchmark/build.bench.js",
|
||||
"test": "uvu test -i fixtures -i benchmark -i test-utils.js"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/astro-test-builtins-polyfillnode",
|
||||
"version": "1.2.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"file-url": "4.0.0"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/astro-test-builtins",
|
||||
"version": "1.2.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@astrojs/astro-test-builtins-dep": "file:./packages/dep"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/astro-test-builtins-dep",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"module": "main.js",
|
||||
"main": "main.js"
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/test-custom-element-renderer",
|
||||
"main": "index.js",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"main": "index.js",
|
||||
"type": "module"
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/test-custom-elements",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@astrojs/test-custom-element-renderer": "0.0.1"
|
||||
}
|
||||
|
|
|
@ -14,7 +14,8 @@
|
|||
"create-astro": "./create-astro.mjs"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "astro-scripts build \"src/*.ts\"",
|
||||
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
||||
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
||||
"prepare": "yarn build",
|
||||
"test": "rm -rf test/fixtures && mkdir test/fixtures && node --unhandled-rejections=strict test/create-astro.test.js"
|
||||
},
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
"types"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "astro-scripts build 'src/index.ts'",
|
||||
"dev": "astro-scripts dev 'src/index.ts'"
|
||||
"build": "astro-scripts build \"src/**/*.ts\"",
|
||||
"dev": "astro-scripts dev \"src/**/*.ts\""
|
||||
},
|
||||
"dependencies": {
|
||||
"source-map": "^0.7.3",
|
||||
|
|
|
@ -12,11 +12,12 @@
|
|||
"author": "Astro",
|
||||
"license": "MIT",
|
||||
"publisher": "astro-build",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"vscode:prepublish": "yarn build",
|
||||
"vscode:publish": "node ./scripts/publish.mjs",
|
||||
"build": "astro-scripts build 'src/index.ts'",
|
||||
"dev": "astro-scripts dev 'src/index.ts'"
|
||||
"build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
|
||||
"dev": "astro-scripts dev \"src/**/*.ts\""
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.52.0"
|
||||
|
|
Loading…
Reference in a new issue