Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit b3a1933

Browse files
committed
feat: initial commit
1 parent f147f8f commit b3a1933

File tree

10 files changed

+9238
-45
lines changed

10 files changed

+9238
-45
lines changed

.eslintrc.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,14 @@ const { overrides } = require('@netlify/eslint-config-node')
55
module.exports = {
66
extends: '@netlify/eslint-config-node',
77
rules: {},
8-
overrides: [...overrides],
8+
overrides: [
9+
...overrides,
10+
{
11+
files: 'test/*.js',
12+
rules: {
13+
'no-magic-numbers': 'off',
14+
'promise/prefer-await-to-callbacks': 'off',
15+
},
16+
},
17+
],
918
}

.github/workflows/release-please.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
name: release-please
2-
on:
3-
push:
4-
branches:
5-
- master
6-
jobs:
7-
release-please:
8-
runs-on: ubuntu-latest
9-
steps:
10-
- uses: GoogleCloudPlatform/release-please-action@v2
11-
with:
12-
token: ${{ secrets.GITHUB_TOKEN }}
13-
release-type: node
14-
package-name: "@netlify/netlify-functions-js"
1+
name: release-please
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
release-please:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: GoogleCloudPlatform/release-please-action@v2
11+
with:
12+
token: ${{ secrets.GITHUB_TOKEN }}
13+
release-type: node
14+
package-name: '@netlify/netlify-functions-js'

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
[![Build](https://github.com/netlify/netlify-functions-js/workflows/Build/badge.svg)](https://github.com/netlify/netlify-functions-js/actions)
2-
[![Node](https://img.shields.io/node/v/@netlify/netlify-functions-js.svg?logo=node.js)](https://www.npmjs.com/package/@netlify/netlify-functions-js)
1+
[![Build](https://github.com/netlify/functions-js/workflows/Build/badge.svg)](https://github.com/netlify/functions-js/actions)
2+
[![Coverage Status](https://codecov.io/gh/netlify/functions-js/branch/master/graph/badge.svg)](https://codecov.io/gh/netlify/functions-js)
3+
[![Node](https://img.shields.io/node/v/@netlify/functions.svg?logo=node.js)](https://www.npmjs.com/package/@netlify/functions)
34

4-
# netlify-functions-js
5+
# functions-js
56

6-
Update me!
7+
JavaScript utilities for Netlify Functions.
78

89
## Contributors
910

0 commit comments

Comments
 (0)