mirror of
https://github.com/vuejs/vue.git
synced 2024-11-21 20:28:54 +00:00
build: rename build/ to scripts/
This commit is contained in:
parent
2494772947
commit
144a4dd860
@ -1,7 +1,7 @@
|
||||
[ignore]
|
||||
.*/node_modules/.*
|
||||
.*/test/.*
|
||||
.*/build/.*
|
||||
.*/scripts/.*
|
||||
.*/examples/.*
|
||||
.*/benchmarks/.*
|
||||
|
||||
|
6
.github/CONTRIBUTING.md
vendored
6
.github/CONTRIBUTING.md
vendored
@ -75,11 +75,11 @@ The default test script will do the following: lint with ESLint -> type check wi
|
||||
|
||||
## Project Structure
|
||||
|
||||
- **`build`**: contains build-related configuration files. In most cases you don't need to touch them. However, it would be helpful to familiarize yourself with the following files:
|
||||
- **`scripts`**: contains build-related scripts and configuration files. In most cases you don't need to touch them. However, it would be helpful to familiarize yourself with the following files:
|
||||
|
||||
- `build/alias.js`: module import aliases used across all source code and tests.
|
||||
- `scripts/alias.js`: module import aliases used across all source code and tests.
|
||||
|
||||
- `build/config.js`: contains the build configurations for all files found in `dist/`. Check this file if you want to find out the entry source file for a dist file.
|
||||
- `scripts/config.js`: contains the build configurations for all files found in `dist/`. Check this file if you want to find out the entry source file for a dist file.
|
||||
|
||||
- **`dist`**: contains built files for distribution. Note this directory is only updated when a release happens; they do not reflect the latest changes in development branches.
|
||||
|
||||
|
26
package.json
26
package.json
@ -13,16 +13,16 @@
|
||||
"types/*.d.ts"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "rollup -w -c build/config.js --environment TARGET:web-full-dev",
|
||||
"dev:cjs": "rollup -w -c build/config.js --environment TARGET:web-runtime-cjs",
|
||||
"dev:esm": "rollup -w -c build/config.js --environment TARGET:web-runtime-esm",
|
||||
"dev": "rollup -w -c scripts/config.js --environment TARGET:web-full-dev",
|
||||
"dev:cjs": "rollup -w -c scripts/config.js --environment TARGET:web-runtime-cjs",
|
||||
"dev:esm": "rollup -w -c scripts/config.js --environment TARGET:web-runtime-esm",
|
||||
"dev:test": "karma start test/unit/karma.dev.config.js",
|
||||
"dev:ssr": "rollup -w -c build/config.js --environment TARGET:web-server-renderer",
|
||||
"dev:compiler": "rollup -w -c build/config.js --environment TARGET:web-compiler ",
|
||||
"dev:weex": "rollup -w -c build/config.js --environment TARGET:weex-framework",
|
||||
"dev:weex:factory": "rollup -w -c build/config.js --environment TARGET:weex-factory",
|
||||
"dev:weex:compiler": "rollup -w -c build/config.js --environment TARGET:weex-compiler ",
|
||||
"build": "node build/build.js",
|
||||
"dev:ssr": "rollup -w -c scripts/config.js --environment TARGET:web-server-renderer",
|
||||
"dev:compiler": "rollup -w -c scripts/config.js --environment TARGET:web-compiler ",
|
||||
"dev:weex": "rollup -w -c scripts/config.js --environment TARGET:weex-framework",
|
||||
"dev:weex:factory": "rollup -w -c scripts/config.js --environment TARGET:weex-factory",
|
||||
"dev:weex:compiler": "rollup -w -c scripts/config.js --environment TARGET:weex-compiler ",
|
||||
"build": "node scripts/build.js",
|
||||
"build:ssr": "npm run build -- web-runtime-cjs,web-server-renderer",
|
||||
"build:weex": "npm run build -- weex",
|
||||
"test": "npm run lint && flow check && npm run test:types && npm run test:cover && npm run test:e2e -- --env phantomjs && npm run test:ssr && npm run test:weex",
|
||||
@ -37,10 +37,10 @@
|
||||
"flow": "flow check",
|
||||
"sauce": "karma start test/unit/karma.sauce.config.js",
|
||||
"bench:ssr": "npm run build:ssr && node benchmarks/ssr/renderToString.js && node benchmarks/ssr/renderToStream.js",
|
||||
"release": "bash build/release.sh",
|
||||
"release:weex": "bash build/release-weex.sh",
|
||||
"release:note": "node build/gen-release-note.js",
|
||||
"setup": "node build/setup.js",
|
||||
"release": "bash scripts/release.sh",
|
||||
"release:weex": "bash scripts/release-weex.sh",
|
||||
"release:note": "node scripts/gen-release-note.js",
|
||||
"setup": "node scripts/setup.js",
|
||||
"commit": "git-cz"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -1,4 +1,4 @@
|
||||
var alias = require('../../build/alias')
|
||||
var alias = require('../../scripts/alias')
|
||||
var webpack = require('webpack')
|
||||
|
||||
var webpackConfig = {
|
||||
|
Loading…
Reference in New Issue
Block a user