Skip to content

Commit 8096538

Browse files
committed
1.0.3
1 parent 97c7f34 commit 8096538

File tree

5 files changed

+31
-9
lines changed

5 files changed

+31
-9
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66
thumbs.db
77
*.ipr
88
*.iws
9+
10+
node_modules/
11+
package-lock.json

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Wezom
3+
Copyright (c) 2018 WezomAgency
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,17 @@ module.exports = {
3838
};
3939

4040
```
41+
42+
---
43+
44+
#### Contributors 💪
45+
46+
- April Arcus [@AprilArcus](https://github.com/AprilArcus)
47+
48+
---
49+
50+
#### License
51+
52+
[MIT License](https://github.com/WezomAgency/babel-loader-exclude-node-modules-except/blob/master/LICENSE)
53+
54+
---

index.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
'use strict';
22

3-
var path = require('path')
4-
, escapeStringRegexp = require('escape-string-regexp')
5-
, ESCAPED_NODE_MODULES = escapeStringRegexp('node_modules')
6-
, ESCAPED_PATH_SEP = escapeStringRegexp(path.sep);
7-
83
/**
94
* @module
105
* @author Oleg Dutchenko <[email protected]>
11-
* @version 1.0.2
6+
* @version 1.0.3
7+
* @contributors
8+
* - April Arcus {@link https://github.com/AprilArcus}
129
*/
1310

11+
var path = require('path')
12+
, escapeStringRegexp = require('escape-string-regexp')
13+
, ESCAPED_NODE_MODULES = escapeStringRegexp('node_modules')
14+
, ESCAPED_PATH_SEP = escapeStringRegexp(path.sep);
15+
1416
// ----------------------------------------
1517
// Public
1618
// ----------------------------------------

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-loader-exclude-node-modules-except",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Creating a regular expression for excluding node_modules from babel transpiling except for individual modules",
55
"main": "index.js",
66
"scripts": {
@@ -18,12 +18,15 @@
1818
"es6 modules"
1919
],
2020
"author": "Oleg Dutchenko <[email protected]>",
21+
"contributors": [
22+
"April Arcus (https://github.com/AprilArcus)"
23+
],
2124
"license": "MIT",
2225
"bugs": {
2326
"url": "https://github.com/WezomAgency/babel-loader-exclude-node-modules-except/issues"
2427
},
2528
"homepage": "https://github.com/WezomAgency/babel-loader-exclude-node-modules-except#readme",
2629
"dependencies": {
27-
"escape-string-regexp": "^2.0.0"
30+
"escape-string-regexp": "2.0.0"
2831
}
2932
}

0 commit comments

Comments
 (0)