File tree Expand file tree Collapse file tree 5 files changed +31
-9
lines changed
Expand file tree Collapse file tree 5 files changed +31
-9
lines changed Original file line number Diff line number Diff line change 66thumbs.db
77* .ipr
88* .iws
9+
10+ node_modules /
11+ package-lock.json
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2018 Wezom
3+ Copyright (c) 2018 WezomAgency
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff 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+ ---
Original file line number Diff line number Diff line change 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 <dutchenko.o.dev@gmail.com>
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// ----------------------------------------
Original file line number Diff line number Diff line change 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" : {
1818 " es6 modules"
1919 ],
2020 "author" : " Oleg Dutchenko <dutchenko.o.dev@gmail.com>" ,
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}
You can’t perform that action at this time.
0 commit comments