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: nuxt/vercel-builder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.17.5
Choose a base ref
...
head repository: nuxt/vercel-builder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
node_modules_dev
node_modules_prod
lib
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ rules:
no-console: 1
no-undef: "off"
"@typescript-eslint/no-var-requires": "off"
"vue/multi-word-component-names": "off"
plugins:
- "@typescript-eslint"
parserOptions:
21 changes: 14 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -9,21 +9,21 @@ on:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: ${{ github.event_name != 'push' }}

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12]
node: [16, 18]

steps:
- uses: actions/checkout@v1

- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v4

- uses: actions/cache@v1
- uses: actions/cache@v4
id: cache
with:
path: "node_modules"
@@ -36,6 +36,13 @@ jobs:
- name: Lint
run: yarn lint

- name: Build
run: yarn build

- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Test
run: yarn test

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -10,4 +10,4 @@ dist
.cache
.tmp
lib
!lib/.yarnclean
.vercel
6 changes: 4 additions & 2 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -4,8 +4,10 @@
},
"github": {
"release": true,
"releaseName": "v${version}",
"releaseNotes": "echo \"${changelog}\" | sed 1,2d"
"releaseName": "v${version}"
},
"npm": {
"skipChecks": true
},
"plugins": {
"@release-it/conventional-changelog": {
File renamed without changes.
166 changes: 165 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,167 @@


## [0.25.0](https://github.com/nuxt/vercel-builder/compare/v0.24.0...v0.25.0) (2024-04-12)


### Bug Fixes

* do not inline `@vercel/build-utils` ([c72143a](https://github.com/nuxt/vercel-builder/commit/c72143ab37a422837051b5749b0e936ed4372abf))
* respect `router.base` if set ([#682](https://github.com/nuxt/vercel-builder/issues/682)) ([6d87f55](https://github.com/nuxt/vercel-builder/commit/6d87f55e08d253db2cfdd546c1a1adccf0e50430))

## [0.24.0](https://github.com/nuxt/vercel-builder/compare/v0.23.0...v0.24.0) (2022-12-02)


### Bug Fixes

* **deps:** upgrade rc9 to latest patch version ([#742](https://github.com/nuxt/vercel-builder/issues/742)) ([28a5bb9](https://github.com/nuxt/vercel-builder/commit/28a5bb90f47fd7254982d7fe17905706752c2f31))
* handle npm v7 overwriting `node_modules` symlink ([#636](https://github.com/nuxt/vercel-builder/issues/636)) ([ff20a34](https://github.com/nuxt/vercel-builder/commit/ff20a34dbc1fcfc576c745ff5db824adc81e1cdf))

## [0.23.0](https://github.com/nuxt/vercel-builder/compare/v0.22.1...v0.23.0) (2022-10-12)


### Bug Fixes

* move `@vercel/build-utils` to a devDependency ([#674](https://github.com/nuxt/vercel-builder/issues/674)) ([feca866](https://github.com/nuxt/vercel-builder/commit/feca866e2ad69760eb3ed517f3a0706a9a7d3d31))

### [0.22.1](https://github.com/nuxt/vercel-builder/compare/v0.22.0...v0.22.1) (2021-09-28)


### Bug Fixes

* revert `@vercel/build-utils` upgrade (hotfix) ([c34432f](https://github.com/nuxt/vercel-builder/commit/c34432fc948564790196583fa3ef2c55adbc4e20)), closes [nuxt/vercel-builder#633](https://github.com/nuxt/vercel-builder/issues/633)

## [0.22.0](https://github.com/nuxt/vercel-builder/compare/v0.21.3...v0.22.0) (2021-09-25)


### ⚠ BREAKING CHANGES

* upgrade `@vercel/node-bridge`

### Features

* allow disabling cache with `NUXT_CACHE_DISABLED` flag ([#628](https://github.com/nuxt/vercel-builder/issues/628)) ([e993410](https://github.com/nuxt/vercel-builder/commit/e993410575f39d55c6abda7861804018f82532fd))


### Miscellaneous Chores

* upgrade `@vercel/node-bridge` ([73af3f9](https://github.com/nuxt/vercel-builder/commit/73af3f941eee2eb782eec468c1538e6b46e819b5))

### [0.21.3](https://github.com/nuxt/vercel-builder/compare/v0.21.2...v0.21.3) (2021-06-10)


### Bug Fixes

* only use custom `publicPath` if it is not absolute ([d8df9af](https://github.com/nuxt/vercel-builder/commit/d8df9aff618c322617523c6b07ba65b45e69be59)), closes [#578](https://github.com/nuxt/vercel-builder/issues/578)

### [0.21.2](https://github.com/nuxt/vercel-builder/compare/v0.21.1...v0.21.2) (2021-03-02)

### [0.21.1](https://github.com/nuxt/vercel-builder/compare/v0.21.0...v0.21.1) (2021-03-02)


### Bug Fixes

* improve error messages when failing to load nuxt config ([4874361](https://github.com/nuxt/vercel-builder/commit/48743613505eba308a98b3ade7ba0880599a3b2c))

## [0.21.0](https://github.com/nuxt/vercel-builder/compare/v0.20.3...v0.21.0) (2021-02-25)


### Features

* zero-config integration with vercel analytics ([#518](https://github.com/nuxt/vercel-builder/issues/518)) ([5001a4a](https://github.com/nuxt/vercel-builder/commit/5001a4ac8a30162c8a4a2855750e27bd8318073f))

### [0.20.3](https://github.com/nuxt/vercel-builder/compare/v0.20.2...v0.20.3) (2021-02-15)


### Bug Fixes

* remove needless default ([455ff1a](https://github.com/nuxt/vercel-builder/commit/455ff1a7aa3185cfb5db1de6930e38fa6faa7a47))

### [0.20.2](https://github.com/nuxt/vercel-builder/compare/v0.20.1...v0.20.2) (2021-02-15)


### Bug Fixes

* de-default the jiti import ([bce0a26](https://github.com/nuxt/vercel-builder/commit/bce0a26f253aca14362ae1825f517c439c019baa))

### [0.20.1](https://github.com/nuxt/vercel-builder/compare/v0.20.0...v0.20.1) (2021-02-15)


### Bug Fixes

* add workaround for esm for Nuxt < 2.15 ([a7a2e49](https://github.com/nuxt/vercel-builder/commit/a7a2e49a20d70766b7eace060b305baeb6fecc14))

## [0.20.0](https://github.com/nuxt/vercel-builder/compare/v0.19.0...v0.20.0) (2021-02-15)


### ⚠ BREAKING CHANGES

* upgrade to nuxt 2.15

### Miscellaneous Chores

* upgrade to nuxt 2.15 ([1588c3b](https://github.com/nuxt/vercel-builder/commit/1588c3b5b1a4383176b47d2a60cdc73cada1554a))

## [0.19.0](https://github.com/nuxt/vercel-builder/compare/v0.18.1...v0.19.0) (2021-01-30)


### Features

* add support for `NPM_RC` and `NPM_TOKEN` ([a223f15](https://github.com/nuxt/vercel-builder/commit/a223f15ccfb4ed39f3292d946b2c0a81289f2ecc)), closes [#488](https://github.com/nuxt/vercel-builder/issues/488)

### [0.18.1](https://github.com/nuxt/vercel-builder/compare/v0.18.0...v0.18.1) (2020-11-30)


### Bug Fixes

* collect all static generated files ([fe4e507](https://github.com/nuxt/vercel-builder/commit/fe4e50701bd9d8ad855c5fcdcf87ff4fb210a243)), closes [#391](https://github.com/nuxt/vercel-builder/issues/391)

## [0.18.0](https://github.com/nuxt/vercel-builder/compare/v0.17.12...v0.18.0) (2020-11-09)


### Features

* add internal server for serverMiddleware ([#375](https://github.com/nuxt/vercel-builder/issues/375)) ([4935cab](https://github.com/nuxt/vercel-builder/commit/4935cab146a04366beb31fc14c35f78cb779d202))

### [0.17.12](https://github.com/nuxt/vercel-builder/compare/v0.17.11...v0.17.12) (2020-09-28)


### Bug Fixes

* improve cache handling ([bec1d02](https://github.com/nuxt/vercel-builder/commit/bec1d02cd8d41ce91f0fccca944f0c77cdafe948))
* print debugging info and don't use `repoRootPath` for `node_modules` ([2626f7f](https://github.com/nuxt/vercel-builder/commit/2626f7f068dde19f146b82270ad3a8a153164f18))

### [0.17.11](https://github.com/nuxt/vercel-builder/compare/v0.17.10...v0.17.11) (2020-09-27)

### [0.17.10](https://github.com/nuxt/vercel-builder/compare/v0.17.9...v0.17.10) (2020-09-27)


### Bug Fixes

* preserve contents of `node_modules` folder if it exists ([b9318b8](https://github.com/nuxt/vercel-builder/commit/b9318b8f98f4e807b90babdbeb2db1759d843258))

### [0.17.9](https://github.com/nuxt/vercel-builder/compare/v0.17.8...v0.17.9) (2020-09-27)


### Bug Fixes

* recursively delete `node_modules` if it exists ([461e2ff](https://github.com/nuxt/vercel-builder/commit/461e2ffb5c3e16c6ca1d76f2d422f702d5db2b05))

### [0.17.8](https://github.com/nuxt/vercel-builder/compare/v0.17.7...v0.17.8) (2020-09-27)


### Bug Fixes

* hotfix to address unlinking `node_modules` issue ([9334118](https://github.com/nuxt/vercel-builder/commit/9334118fa58ed20abd6b38a9c56e530ef3f1a353)), closes [#369](https://github.com/nuxt/vercel-builder/issues/369)

### [0.17.7](https://github.com/nuxt/vercel-builder/compare/v0.17.6...v0.17.7) (2020-09-22)


### Bug Fixes

* revert vercel monorepo support ([#366](https://github.com/nuxt/vercel-builder/issues/366)) ([f7d4ff4](https://github.com/nuxt/vercel-builder/commit/f7d4ff4e27fd1e5f175e45792a631c81abf6f976))

### [0.17.6](https://github.com/nuxt/vercel-builder/compare/v0.17.5...v0.17.6) (2020-09-22)

### [0.17.5](https://github.com/nuxt/vercel-builder/compare/v0.17.4...v0.17.5) (2020-09-06)


@@ -194,4 +358,4 @@ All notable changes to this project will be documented in this file. See [standa

### Features

* working cache! ([b942a5d](https://github.com/nuxt/now-builder/commit/b942a5d))
* working cache! ([b942a5d](https://github.com/nuxt/now-builder/commit/b942a5d))
Loading