build: remove lerna
This commit is contained in:
parent
7aca27392f
commit
cd5ba7cfcc
23
.github/contributing.md
vendored
23
.github/contributing.md
vendored
@ -51,7 +51,6 @@ A high level overview of tools used:
|
|||||||
- [Rollup](https://rollupjs.org) for bundling
|
- [Rollup](https://rollupjs.org) for bundling
|
||||||
- [Jest](https://jestjs.io/) for unit testing
|
- [Jest](https://jestjs.io/) for unit testing
|
||||||
- [Prettier](https://prettier.io/) for code formatting
|
- [Prettier](https://prettier.io/) for code formatting
|
||||||
- [Lerna](https://github.com/lerna/lerna) for monorepo management
|
|
||||||
|
|
||||||
## Scripts
|
## Scripts
|
||||||
|
|
||||||
@ -134,7 +133,7 @@ $ yarn test fileName -t 'test name'
|
|||||||
|
|
||||||
## Project Structure
|
## Project Structure
|
||||||
|
|
||||||
This project uses a [monorepo](https://github.com/lerna/lerna#about) structure and contains the following packages:
|
This repository employs a [monorepo](https://en.wikipedia.org/wiki/Monorepo) setup which hosts a number of associated packages under the `packages` directory:
|
||||||
|
|
||||||
- `reactivity`: The reactivity system. It can be used standalone as a framework-agnostic package.
|
- `reactivity`: The reactivity system. It can be used standalone as a framework-agnostic package.
|
||||||
|
|
||||||
@ -158,12 +157,30 @@ This project uses a [monorepo](https://github.com/lerna/lerna#about) structure a
|
|||||||
|
|
||||||
- `vue`: The public facing "full build" which includes both the runtime AND the compiler.
|
- `vue`: The public facing "full build" which includes both the runtime AND the compiler.
|
||||||
|
|
||||||
Note that when importing these packages, the `@vue/` prefix is needed:
|
### Importing Packages
|
||||||
|
|
||||||
|
The packages can import each other directly using their package names. Note that when importing a package, the name listed in its `package.json` should be used. Most of the time the `@vue/` prefix is needed:
|
||||||
|
|
||||||
``` js
|
``` js
|
||||||
import { h } from '@vue/runtime-core'
|
import { h } from '@vue/runtime-core'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
This is made possible via several configurations:
|
||||||
|
|
||||||
|
- For TypeScript, `compilerOptions.path` in `tsconfig.json`
|
||||||
|
- For Jest, `moduleNameMapping` in `jest.config.js`
|
||||||
|
- For plain Node.js, they are linked using [Yarn Workspaces](https://yarnpkg.com/blog/2017/08/02/introducing-workspaces/).
|
||||||
|
|
||||||
|
### Package Dependencies
|
||||||
|
|
||||||
|
There are some rules to follow when importing across package boundaries:
|
||||||
|
|
||||||
|
- Never use direct relative paths when importing items from another package - export it in the source package and import it at the package level.
|
||||||
|
|
||||||
|
- Compiler packages should not import items from the runtime, and vice versa. If something needs to be shared between the compiler-side and runtime-side, it should be extracted into `@vue/shared` instead.
|
||||||
|
|
||||||
|
- If a package (A) has a non-type import from another package (B), package (B) should be listed as a dependency in the `package.json` of package (A). This is because the packages are externalized in the ESM-bundler/CJS builds and type declaration files, so the dependency packages must be actually installed as a dependency when consumed from package registries.
|
||||||
|
|
||||||
## Contributing Tests
|
## Contributing Tests
|
||||||
|
|
||||||
Unit tests are collocated with the code being tested in each package, inside directories named `__tests__`. Consult the [Jest docs](https://jestjs.io/docs/en/using-matchers) and existing test cases for how to write new test specs. Here are some additional guidelines:
|
Unit tests are collocated with the code being tested in each package, inside directories named `__tests__`. Consult the [Jest docs](https://jestjs.io/docs/en/using-matchers) and existing test cases for how to write new test specs. Here are some additional guidelines:
|
||||||
|
@ -1,11 +1,9 @@
|
|||||||
const lernaJson = require('./lerna.json')
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
preset: 'ts-jest',
|
preset: 'ts-jest',
|
||||||
globals: {
|
globals: {
|
||||||
__DEV__: true,
|
__DEV__: true,
|
||||||
__TEST__: true,
|
__TEST__: true,
|
||||||
__VERSION__: lernaJson.version,
|
__VERSION__: require('./package.json').version,
|
||||||
__BROWSER__: false,
|
__BROWSER__: false,
|
||||||
__RUNTIME_COMPILE__: true,
|
__RUNTIME_COMPILE__: true,
|
||||||
__FEATURE_OPTIONS__: true,
|
__FEATURE_OPTIONS__: true,
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"npmClient": "yarn",
|
|
||||||
"useWorkspaces": true,
|
|
||||||
"version": "3.0.0-alpha.1"
|
|
||||||
}
|
|
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"version": "3.0.0-alpha.1",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"packages/*"
|
"packages/*"
|
||||||
],
|
],
|
||||||
@ -11,7 +12,8 @@
|
|||||||
"size": "yarn size-runtime && yarn size-compiler",
|
"size": "yarn size-runtime && yarn size-compiler",
|
||||||
"lint": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",
|
"lint": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",
|
||||||
"test": "node scripts/build.js vue -f global -d && jest",
|
"test": "node scripts/build.js vue -f global -d && jest",
|
||||||
"test-dts": "node scripts/build.js reactivity runtime-core runtime-dom -t -f esm && tsd"
|
"test-dts": "node scripts/build.js reactivity runtime-core runtime-dom -t -f esm && tsd",
|
||||||
|
"release": "node scripts/release.js"
|
||||||
},
|
},
|
||||||
"types": "test-dts/index.d.ts",
|
"types": "test-dts/index.d.ts",
|
||||||
"tsd": {
|
"tsd": {
|
||||||
@ -39,10 +41,10 @@
|
|||||||
"@types/puppeteer": "^2.0.0",
|
"@types/puppeteer": "^2.0.0",
|
||||||
"brotli": "^1.3.2",
|
"brotli": "^1.3.2",
|
||||||
"chalk": "^2.4.2",
|
"chalk": "^2.4.2",
|
||||||
|
"enquirer": "^2.3.2",
|
||||||
"execa": "^2.0.4",
|
"execa": "^2.0.4",
|
||||||
"fs-extra": "^8.1.0",
|
"fs-extra": "^8.1.0",
|
||||||
"jest": "^24.9.0",
|
"jest": "^24.9.0",
|
||||||
"lerna": "^3.16.4",
|
|
||||||
"lint-staged": "^9.2.3",
|
"lint-staged": "^9.2.3",
|
||||||
"minimist": "^1.2.0",
|
"minimist": "^1.2.0",
|
||||||
"prettier": "~1.14.0",
|
"prettier": "~1.14.0",
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
import { version } from '../src'
|
|
||||||
import lernaJson from '../../../lerna.json'
|
|
||||||
|
|
||||||
test('version', () => {
|
|
||||||
expect(version).toBe(lernaJson.version)
|
|
||||||
})
|
|
@ -3,12 +3,12 @@ import path from 'path'
|
|||||||
import ts from 'rollup-plugin-typescript2'
|
import ts from 'rollup-plugin-typescript2'
|
||||||
import replace from '@rollup/plugin-replace'
|
import replace from '@rollup/plugin-replace'
|
||||||
import json from '@rollup/plugin-json'
|
import json from '@rollup/plugin-json'
|
||||||
import lernaJson from './lerna.json'
|
|
||||||
|
|
||||||
if (!process.env.TARGET) {
|
if (!process.env.TARGET) {
|
||||||
throw new Error('TARGET package must be specified via --environment flag.')
|
throw new Error('TARGET package must be specified via --environment flag.')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const masterVersion = require('./package.json').version
|
||||||
const packagesDir = path.resolve(__dirname, 'packages')
|
const packagesDir = path.resolve(__dirname, 'packages')
|
||||||
const packageDir = path.resolve(packagesDir, process.env.TARGET)
|
const packageDir = path.resolve(packagesDir, process.env.TARGET)
|
||||||
const name = path.basename(packageDir)
|
const name = path.basename(packageDir)
|
||||||
@ -137,7 +137,7 @@ function createReplacePlugin(
|
|||||||
) {
|
) {
|
||||||
return replace({
|
return replace({
|
||||||
__COMMIT__: `"${process.env.COMMIT}"`,
|
__COMMIT__: `"${process.env.COMMIT}"`,
|
||||||
__VERSION__: `"${lernaJson.version}"`,
|
__VERSION__: `"${masterVersion}"`,
|
||||||
__DEV__: isBundlerESMBuild
|
__DEV__: isBundlerESMBuild
|
||||||
? // preserve to be handled by bundlers
|
? // preserve to be handled by bundlers
|
||||||
`(process.env.NODE_ENV !== 'production')`
|
`(process.env.NODE_ENV !== 'production')`
|
||||||
|
4
scripts/bootstrap.js
vendored
4
scripts/bootstrap.js
vendored
@ -3,7 +3,7 @@
|
|||||||
const args = require('minimist')(process.argv.slice(2))
|
const args = require('minimist')(process.argv.slice(2))
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const baseVersion = require('../lerna.json').version
|
const version = require('../package.json').version
|
||||||
|
|
||||||
const packagesDir = path.resolve(__dirname, '../packages')
|
const packagesDir = path.resolve(__dirname, '../packages')
|
||||||
const files = fs.readdirSync(packagesDir)
|
const files = fs.readdirSync(packagesDir)
|
||||||
@ -26,7 +26,7 @@ files.forEach(shortName => {
|
|||||||
if (args.force || !pkgExists) {
|
if (args.force || !pkgExists) {
|
||||||
const json = {
|
const json = {
|
||||||
name,
|
name,
|
||||||
version: baseVersion,
|
version,
|
||||||
description: name,
|
description: name,
|
||||||
main: 'index.js',
|
main: 'index.js',
|
||||||
module: `dist/${shortName}.esm-bundler.js`,
|
module: `dist/${shortName}.esm-bundler.js`,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user