Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

Node 14 #980

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[ignore]
.*/node_modules/jest-validate/*
.*/node_modules/protobufjs/*
.*/node_modules/resolve/*
.*/build/*
.*/coverage/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '10'
node-version: '14'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
Expand Down
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
## [27.0]

- **Removed** ld dependency

## [26.1]

- **Improved** add github action
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CI_BUILD_NUMBER ?= $(USER)-snapshot
VERSION ?= 27.0.$(CI_BUILD_NUMBER)
VERSION ?= 26.1.$(CI_BUILD_NUMBER)

version:
@echo $(VERSION)
2 changes: 1 addition & 1 deletion __mocks__/request.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const actual_request = require.requireActual('request');
const actual_request = jest.requireActual('request');
/**
* Jest will automatically apply this mock for every call to the `request`
* package when running tests. This means that the network will not be hit by
Expand Down
1 change: 1 addition & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ module.exports = {
'babel-plugin-dynamic-import-node',
'@babel/plugin-transform-runtime',
'@babel/plugin-proposal-class-properties',

],
};
Loading