Skip to content

Commit e1a978e

Browse files
master -> main [skip ci]
1 parent 144efda commit e1a978e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**Please Read the [CONTRIBUTING Guidelines](https://github.com/babel/babel-loader/blob/master/CONTRIBUTING.md)**
1+
**Please Read the [CONTRIBUTING Guidelines](https://github.com/babel/babel-loader/blob/main/CONTRIBUTING.md)**
22
*In particular the portion on Commit Message Formatting*
33

44
**Please check if the PR fulfills these requirements**

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212

1313
While personally I'm using the [node-style-guide](https://github.com/felixge/node-style-guide), as long you don't do something too weird or fancy, that's probably ok.
1414

15-
If, however, you want to ensure that you're following the node style guide, you can use [JSCS](https://github.com/jscs-dev/node-jscs). The rules are already set on the [.jscsrc](https://github.com/babel/babel-loader/blob/master/.jscsrc) file and there's most likely some [package](http://jscs.info/overview.html#friendly-packages) to your editor already.
15+
If, however, you want to ensure that you're following the node style guide, you can use [JSCS](https://github.com/jscs-dev/node-jscs). The rules are already set on the [.jscsrc](https://github.com/babel/babel-loader/blob/main/.jscsrc) file and there's most likely some [package](http://jscs.info/overview.html#friendly-packages) to your editor already.
1616

1717
Documentation, whether in the state of JavaDoc or simple line comments are always welcome.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
> Check the [7.x branch](https://github.com/babel/babel-loader/tree/7.x) for docs with Babel v6
33
44
[![NPM Status](https://img.shields.io/npm/v/babel-loader.svg?style=flat)](https://www.npmjs.com/package/babel-loader)
5-
[![codecov](https://codecov.io/gh/babel/babel-loader/branch/master/graph/badge.svg)](https://codecov.io/gh/babel/babel-loader)
5+
[![codecov](https://codecov.io/gh/babel/babel-loader/branch/main/graph/badge.svg)](https://codecov.io/gh/babel/babel-loader)
66

77
<div align="center">
88
<a href="https://github.com/babel/babel">
@@ -126,7 +126,7 @@ rules: [
126126

127127
#### **NOTE**: transform-runtime & custom polyfills (e.g. Promise library)
128128

129-
Since [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime) includes a polyfill that includes a custom [regenerator-runtime](https://github.com/facebook/regenerator/blob/master/packages/regenerator-runtime/runtime.js) and [core-js](https://github.com/zloirock/core-js), the following usual shimming method using `webpack.ProvidePlugin` will not work:
129+
Since [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-runtime) includes a polyfill that includes a custom [regenerator-runtime](https://github.com/facebook/regenerator/blob/master/packages/regenerator-runtime/runtime.js) and [core-js](https://github.com/zloirock/core-js), the following usual shimming method using `webpack.ProvidePlugin` will not work:
130130

131131
```javascript
132132
// ...

src/transform.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = async function (source, options) {
1616

1717
// We don't return the full result here because some entries are not
1818
// really serializable. For a full list of properties see here:
19-
// https://github.com/babel/babel/blob/master/packages/babel-core/src/transformation/index.js
19+
// https://github.com/babel/babel/blob/main/packages/babel-core/src/transformation/index.js
2020
// For discussion on this topic see here:
2121
// https://github.com/babel/babel-loader/pull/629
2222
const { ast, code, map, metadata, sourceType } = result;

0 commit comments

Comments
 (0)