Skip to content

Commit

Permalink
chore: alpha release v0.0.1 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShenQingchuan committed Oct 13, 2023
1 parent 8de7f1e commit a88e902
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 5 deletions.
7 changes: 7 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @vue-vine/compiler

## 0.0.1

### Patch Changes

- Alpha test release - Publish Vue Vine compiler, Vite plugin and main entry package.
6 changes: 5 additions & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-vine/compiler",
"version": "0.0.0",
"version": "0.0.1",
"description": "Compiler for Vue Vine",
"author": "ShenQingchuan",
"license": "MIT",
Expand Down Expand Up @@ -54,5 +54,9 @@
"vite": "^4.4.9",
"vitest": "^0.33.0",
"vue": "^3.3.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
9 changes: 9 additions & 0 deletions packages/vite-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @vue-vine/vite-plugin

## 0.0.1

### Patch Changes

- Alpha test release - Publish Vue Vine compiler, Vite plugin and main entry package.
- Updated dependencies
- @vue-vine/compiler@0.0.1
6 changes: 5 additions & 1 deletion packages/vite-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-vine/vite-plugin",
"version": "0.0.0",
"version": "0.0.1",
"description": "Official Vite plugin for Vue Vine",
"author": "ShenQingchuan",
"license": "MIT",
Expand Down Expand Up @@ -41,5 +41,9 @@
"vite": "^4.4.9",
"vitest": "^0.31.4",
"vue": "^3.3.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
9 changes: 9 additions & 0 deletions packages/vue-vine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vue-vine

## 0.0.1

### Patch Changes

- Alpha test release - Publish Vue Vine compiler, Vite plugin and main entry package.
- Updated dependencies
- @vue-vine/vite-plugin@0.0.1
6 changes: 5 additions & 1 deletion packages/vue-vine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-vine",
"version": "0.0.0",
"version": "0.0.1",
"description": "Another style to write Vue.js",
"author": "ShenQingchuan",
"license": "MIT",
Expand Down Expand Up @@ -39,5 +39,9 @@
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
4 changes: 2 additions & 2 deletions scripts/rollup/plugins.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { rmSync } from 'node:fs'
import { execSync } from 'node:child_process'
import { exec } from 'node:child_process'

export function cleanDist(distPath) {
return {
Expand All @@ -14,7 +14,7 @@ export function runTscOnFinished(cwd) {
return {
name: 'runTscOnFinished',
buildEnd() {
execSync('tsc', { stdio: 'inherit', cwd })
exec('tsc', { stdio: 'inherit', cwd, shell: true })
},
}
}

0 comments on commit a88e902

Please sign in to comment.