Skip to content

Commit

Permalink
Merge branch 'master' into feat/types-bundle-tagged-union-type-asset-…
Browse files Browse the repository at this point in the history
…chunk
  • Loading branch information
lukastaegert committed Aug 27, 2019
2 parents ddb330c + cc5fd63 commit 68cf37c
Show file tree
Hide file tree
Showing 87 changed files with 1,037 additions and 507 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/node-windows.yml
@@ -0,0 +1,32 @@
name: Node

on: [push]

jobs:
build:

runs-on: windows-2019

strategy:
matrix:
node: [ '10', '6' ]

name: ${{ matrix.node }} (Windows)
steps:
- name: Configure git line-breaks
run: git config --global core.autocrlf false
- name: Checkout Commit
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Check npm version
# This is only necessary until we dump Node 6
run: IF ${{ matrix.node }} LSS 8 npm i npm@5 -g
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run tests
run: npm test
env:
CI: true
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,14 @@
# rollup changelog

## 1.20.2
*2019-08-25*

### Bug Fixes
* Avoid an issue where circular namespace reexports would crash Rollup (#3074)

### Pull Requests
* [#3077](https://github.com/rollup/rollup/pull/3077): Handle namespaces that reexport themselves (@lukastaegert)

## 1.20.1
*2019-08-22*

Expand Down
32 changes: 0 additions & 32 deletions appveyor.yml

This file was deleted.

0 comments on commit 68cf37c

Please sign in to comment.