Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vuejs/composition-api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.1
Choose a base ref
...
head repository: vuejs/composition-api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.6.2
Choose a head ref
  • 14 commits
  • 37 files changed
  • 5 contributors

Commits on Jun 9, 2020

  1. 3

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    89aae21 View commit details
  2. chore: add npm badge

    antfu committed Jun 9, 2020
    Copy the full SHA
    9f18edf View commit details
  3. Copy the full SHA
    bc78428 View commit details

Commits on Jun 10, 2020

  1. feat(test): add dts testing (#347)

    * feat(test): add dts testing
    
    * update test script
    
    * update github actions
    
    * chore: update to align with vue-next
    
    * clean up
    
    * fix test
    
    * fix
    
    * Update .github/workflows/nodejs.yml
    
    Co-authored-by: Carlos Rodrigues <david-181@hotmail.com>
    
    Co-authored-by: Carlos Rodrigues <david-181@hotmail.com>
    antfu and pikax authored Jun 10, 2020
    Copy the full SHA
    530f110 View commit details
  2. Handle non-reactive nulls (#231) (#241)

    * Fixes #231
    
    * Impl feedback
    
    * Handle undefined as well
    
    * Add unit test for undefined values
    
    * Update setup.spec.js
    
    * Apply suggestions from code review
    
    * Update test/setup.spec.js
    
    Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
    Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
    3 people authored Jun 10, 2020
    Copy the full SHA
    34c0fad View commit details
  3. Copy the full SHA
    bca3a69 View commit details
  4. fix: defineComponent() with array props (#364)

    * fix: defineComponent() with array props
    
    * fix
    
    * fix by @pikax
    
    * add test
    
    * update test
    
    * fix
    antfu authored Jun 10, 2020
    Copy the full SHA
    d7048d4 View commit details
  5. chore(prettier): match with vue-next (#348)

    * chore(prettier): match with vue-next
    
    * add lint script
    antfu authored Jun 10, 2020
    Copy the full SHA
    f01e8e8 View commit details
  6. chore: run lint

    antfu committed Jun 10, 2020
    Copy the full SHA
    9613dde View commit details
  7. fix(reactivity): unwrap nested refs on the template (#361)

    * fix: unwrap nested refs on the template
    
    * chore: add more nested to test
    
    * Update src/reactivity/unwrap.ts
    
    Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
    
    * chore: if the object is not extensible stop unwrapping
    
    Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
    pikax and antfu authored Jun 10, 2020
    Copy the full SHA
    1fd48f5 View commit details
  8. chore: update README

    antfu committed Jun 10, 2020
    Copy the full SHA
    ccf0905 View commit details

Commits on Jun 11, 2020

  1. Copy the full SHA
    86a5c16 View commit details
  2. chore: automate release scripts (#367)

    * chore: automate release scripts
    
    * yarnrc
    
    * update test order
    
    * combine unit tests and type test
    
    * release script no longer needed
    antfu authored Jun 11, 2020
    Copy the full SHA
    14dec07 View commit details
  3. chore: release v0.6.2

    antfu committed Jun 11, 2020
    Copy the full SHA
    a506da9 View commit details
35 changes: 20 additions & 15 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,34 @@
name: Node CI
name: Build & Test

on:
push:
branches:
- master
pull_request:
branches:
- master
- master

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install --frozen-lockfile
- name: Typing Declartion Tests
run: yarn test-dts
env:
CI: true
- name: Unit Tests
run: yarn test-unit
env:
CI: true

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -8,3 +8,4 @@ lib
.idea
.rpt2_cache
TODO.md
typings
3 changes: 3 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
version-tag-prefix "v"
version-git-message "chore: release v%s"
version-git-tag true
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="0.6.2"></a>
## [0.6.2](https://github.com/vuejs/composition-api/compare/v0.6.1...v0.6.2) (2020-06-11)


### Bug Fixes

* **reactivity:** unwrap nested refs on the template ([#361](https://github.com/vuejs/composition-api/issues/361)) ([1fd48f5](https://github.com/vuejs/composition-api/commit/1fd48f5))
* defineComponent() with array props ([#364](https://github.com/vuejs/composition-api/issues/364)) ([d7048d4](https://github.com/vuejs/composition-api/commit/d7048d4))
* **setup:** Allow retuning frozen objects on the setup ([#366](https://github.com/vuejs/composition-api/issues/366)) ([bca3a69](https://github.com/vuejs/composition-api/commit/bca3a69))
* mark props as reactive ([#359](https://github.com/vuejs/composition-api/issues/359)) ([bc78428](https://github.com/vuejs/composition-api/commit/bc78428))

# 0.6.1

## Fix
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# Vue Composition API

> [Vue Composition API](https://vue-composition-api-rfc.netlify.com/)
Vue 2 plugin for **Composition API** in Vue 3.

`@vue/composition-api` provides a way to use `Vue 3.0`'s **Composition api** in `Vue 2.x`.
[![npm](https://img.shields.io/npm/v/@vue/composition-api)](https://www.npmjs.com/package/@vue/composition-api)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/vuejs/composition-api/Build%20&%20Test)](https://github.com/vuejs/composition-api/actions?query=workflow%3A%22Build+%26+Test%22)

English | [**中文文档**](./README.zh-CN.md) / [**Composition API RFC**](https://composition-api.vuejs.org/)

**Note: the primary goal of this package is to allow the community to experiment with the API and provide feedback before it's finalized. The implementation may contain minor inconsistencies with the RFC as the latter gets updated. We do not recommend using this package for production yet at this stage.**

[**中文文档**](./README.zh-CN.md)
**Note: the primary goal of this package is to allow the community to experiment with the API and provide feedback before it's finalized. The implementation may contain minor inconsistencies with the RFC as the latter gets updated. We do not recommend using this package for production yet at this stage.**

---

@@ -17,7 +19,6 @@
- [TypeScript](#TypeScript)
- [TSX](#tsx)
- [Limitations](#Limitations)
- [API](https://vue-composition-api-rfc.netlify.com/api.html)
- [Changelog](https://github.com/vuejs/composition-api/blob/master/CHANGELOG.md)

# Installation
10 changes: 6 additions & 4 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Vue Composition API

> [Vue Composition API](https://vue-composition-api-rfc.netlify.com/)
Vue 2 插件用于提供 Vue 3 中的 **组合式 API**.

`@vue/composition-api` 使开发者们可以在 `Vue 2.x` 中使用 `Vue 3.0` 引入的**基于函数****逻辑复用机制**
[![npm](https://img.shields.io/npm/v/@vue/composition-api)](https://www.npmjs.com/package/@vue/composition-api)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/vuejs/composition-api/Build%20&%20Test)](https://github.com/vuejs/composition-api/actions?query=workflow%3A%22Build+%26+Test%22)

[**English Version**](./README.md)
[**English**](./README.md) | 中文文档 / [**组合式 API RFC**](https://composition-api.vuejs.org/zh)

**请注意:此插件的主要目的是让社区尝试新的API并在其最终确定之前提供反馈。随着RFC的更新,该实现可能包含与RFC有细微的不一致。现阶段,我们暂不建议将此插件用于生产环境。**

---

@@ -15,7 +18,6 @@
- [TypeScript](#TypeScript)
- [TSX](#tsx)
- [限制](#限制)
- [API](https://vue-composition-api-rfc.netlify.com/api.html)
- [更新日志](https://github.com/vuejs/composition-api/blob/master/CHANGELOG.md)

# 安装
30 changes: 21 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/composition-api",
"version": "0.6.1",
"version": "0.6.2",
"description": "Provide logic composition capabilities for Vue.",
"keywords": [
"vue",
@@ -22,13 +22,21 @@
"license": "MIT",
"sideEffects": false,
"files": [
"dist/"
"dist"
],
"scripts": {
"start": "cross-env TARGET=es rollup -c -w",
"build": "rollup -c",
"test": "cross-env NODE_ENV=test jest",
"release": "bash scripts/release.sh"
"build": "rimraf dist typings && tsc --emitDeclarationOnly && rollup -c",
"lint": "prettier --write --parser typescript \"{src,test,test-dts}/*.ts?(x)\" && prettier --write \"{src,test}/*.js\"",
"test": "yarn test-dts && yarn test-unit",
"test-unit": "cross-env NODE_ENV=test jest",
"test-dts": "tsc -p ./test-dts/tsconfig.json && yarn build && tsc -p ./test-dts/tsconfig.build.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepublish": "yarn test",
"postpublish": "yarn release-gh",
"version": "yarn changelog && git add CHANGELOG.md",
"release": "yarn version && yarn publish",
"release-gh": "conventional-github-releaser -p angular"
},
"bugs": {
"url": "https://github.com/vuejs/composition-api/issues"
@@ -39,16 +47,20 @@
"@rollup/plugin-replace": "^2.3.2",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.6",
"conventional-changelog-cli": "^2.0.31",
"conventional-github-releaser": "^3.1.3",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.12.0",
"rollup-plugin-dts": "^1.4.7",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3",
"typescript": "^3.9.5",
"vue": "^2.6.11",
"vue-router": "^3.3.2",
"vue-server-renderer": "^2.6.11"
@@ -69,7 +81,7 @@
"prettier --write",
"git add"
],
"*.ts": [
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
@@ -95,8 +107,8 @@
"preset": "ts-jest"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
"printWidth": 80
}
}
57 changes: 41 additions & 16 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as path from 'path';
// import filesize from 'rollup-plugin-filesize';
import typescript from 'rollup-plugin-typescript2';
import resolve from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import replace from '@rollup/plugin-replace';
import * as path from 'path'
import typescript from 'rollup-plugin-typescript2'
import resolve from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
import replace from '@rollup/plugin-replace'
import dts from 'rollup-plugin-dts'

const builds = {
'cjs-dev': {
@@ -31,14 +31,20 @@ const builds = {
format: 'es',
mode: 'development',
},
};
}

function onwarn(msg, warn) {
if (!/Circular/.test(msg)) {
warn(msg)
}
}

function getAllBuilds() {
return Object.keys(builds).map(key => genConfig(builds[key]));
return Object.keys(builds).map((key) => genConfig(builds[key]))
}

function genConfig({ outFile, format, mode }) {
const isProd = mode === 'production';
const isProd = mode === 'production'
return {
input: './src/index.ts',
output: {
@@ -51,13 +57,21 @@ function genConfig({ outFile, format, mode }) {
name: format === 'umd' ? 'vueCompositionApi' : undefined,
},
external: ['vue'],
onwarn,
plugins: [
typescript({
typescript: require('typescript'),
tsconfigOverride: {
declaration: false,
declarationDir: null,
emitDeclarationOnly: false,
},
useTsconfigDeclarationDir: true,
}),
resolve(),
replace({
'process.env.NODE_ENV': JSON.stringify(isProd ? 'production' : 'development'),
'process.env.NODE_ENV': JSON.stringify(
isProd ? 'production' : 'development'
),
__DEV__:
format === 'es'
? // preserve to be handled by bundlers
@@ -67,15 +81,26 @@ function genConfig({ outFile, format, mode }) {
}),
isProd && terser(),
].filter(Boolean),
};
}
}

let buildConfig;
let buildConfig

if (process.env.TARGET) {
buildConfig = genConfig(builds[process.env.TARGET]);
buildConfig = genConfig(builds[process.env.TARGET])
} else {
buildConfig = getAllBuilds();
buildConfig = getAllBuilds()
}

export default buildConfig;
// bundle typings
buildConfig.push({
input: 'typings/index.d.ts',
output: {
file: 'dist/index.d.ts',
format: 'es',
},
onwarn,
plugins: [dts()],
})

export default buildConfig
37 changes: 0 additions & 37 deletions scripts/release.sh

This file was deleted.

Loading