Skip to content

Commit d1bc6ee

Browse files
committed
chore: setup all packages
1 parent 898b110 commit d1bc6ee

File tree

36 files changed

+152
-17
lines changed

36 files changed

+152
-17
lines changed

packages/compiler-core/.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__tests__/
2+
__mocks__/
3+
dist/packages

packages/compiler-core/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# @vue/compiler-core

packages/compiler-core/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
'use strict'
2+
3+
if (process.env.NODE_ENV === 'production') {
4+
module.exports = require('./dist/compiler-core.cjs.prod.js')
5+
} else {
6+
module.exports = require('./dist/compiler-core.cjs.js')
7+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "@vue/compiler-core",
3+
"version": "3.0.0-alpha.1",
4+
"description": "@vue/compiler-core",
5+
"main": "index.js",
6+
"module": "dist/compiler-core.esm.js",
7+
"typings": "dist/index.d.ts",
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/vuejs/vue.git"
11+
},
12+
"keywords": [
13+
"vue"
14+
],
15+
"author": "Evan You",
16+
"license": "MIT",
17+
"bugs": {
18+
"url": "https://github.com/vuejs/vue/issues"
19+
},
20+
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-core#readme"
21+
}

packages/compiler-core/src/index.ts

Whitespace-only changes.

packages/compiler-dom/.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__tests__/
2+
__mocks__/
3+
dist/packages

packages/compiler-dom/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# @vue/compiler-dom

packages/compiler-dom/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
'use strict'
2+
3+
if (process.env.NODE_ENV === 'production') {
4+
module.exports = require('./dist/compiler-dom.cjs.prod.js')
5+
} else {
6+
module.exports = require('./dist/compiler-dom.cjs.js')
7+
}

packages/compiler-dom/package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "@vue/compiler-dom",
3+
"version": "3.0.0-alpha.1",
4+
"description": "@vue/compiler-dom",
5+
"main": "index.js",
6+
"module": "dist/compiler-dom.esm.js",
7+
"typings": "dist/index.d.ts",
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/vuejs/vue.git"
11+
},
12+
"keywords": [
13+
"vue"
14+
],
15+
"author": "Evan You",
16+
"license": "MIT",
17+
"bugs": {
18+
"url": "https://github.com/vuejs/vue/issues"
19+
},
20+
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-dom#readme"
21+
}

packages/compiler-dom/src/index.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)