https://github.com/techmmunity/serverless-vercel-ncc
Serverless Framework integration with @vercel/ncc
https://github.com/techmmunity/serverless-vercel-ncc
Last synced: about 1 month ago
JSON representation
Serverless Framework integration with @vercel/ncc
- Host: GitHub
- URL: https://github.com/techmmunity/serverless-vercel-ncc
- Owner: techmmunity
- License: apache-2.0
- Created: 2021-12-03T12:25:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T07:04:59.000Z (about 3 years ago)
- Last Synced: 2025-09-12T00:43:49.497Z (7 months ago)
- Language: TypeScript
- Size: 653 KB
- Stars: 1
- Watchers: 0
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
A serverless plugin to work with @vercel/ncc.
## Install
With Yarn:
```sh
yarn add serverless-vercel-ncc
```
With NPM:
```sh
npm i serverless-vercel-ncc
```
## Usage
```yml
# serverless.yml
custom:
ncc:
concurrency: 3 # Quantity of files being compiled at the same time
excludeDependencies: false # Exclude all the dependencies of package.json
minify: false # @vercel/ncc option
sourceMap: false # @vercel/ncc option
sourceMapRegister: true # @vercel/ncc option
dependenciesToExclude: # Dependencies to exclude (if u want to exclude some extra
- example-dependency # dependencies, or some dependencies that aren't at
- example-dependency # package.json)
# Extra @vercel/ncc options aren't accepted
```
## How to contribute?
All the details about contributing to the project are [described here](https://github.com/techmmunity/base-project-services/blob/master/CONTRIBUTING.md).
