Skip to content

Commit 8f34dd5

Browse files
thewizarodofozmatthewlane
authored andcommitted
Add ignore-loader to handle .md files (#1646)
1 parent 1bdedd6 commit 8f34dd5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,19 @@
4848
"gulp-clean": "^0.3.2",
4949
"gulp-concat": "^2.6.0",
5050
"gulp-connect": "^5.0.0",
51+
"gulp-documentation": "^3.2.1",
5152
"gulp-eslint": "^4.0.0",
5253
"gulp-footer": "^1.0.5",
5354
"gulp-header": "^1.7.1",
5455
"gulp-if": "^2.0.2",
55-
"gulp-documentation": "^3.2.1",
5656
"gulp-optimize-js": "^1.1.0",
5757
"gulp-rename": "^1.2.0",
5858
"gulp-replace": "^0.4.0",
5959
"gulp-shell": "^0.5.2",
6060
"gulp-uglify": "^3.0.0",
6161
"gulp-util": "^3.0.0",
6262
"gulp-webdriver": "^1.0.1",
63+
"ignore-loader": "^0.1.2",
6364
"istanbul": "^0.4.5",
6465
"istanbul-instrumenter-loader": "^3.0.0",
6566
"json-loader": "^0.5.1",

webpack.conf.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ module.exports = {
5151
test: /\.json$/,
5252
loader: 'json-loader'
5353
},
54+
{
55+
test: /\.md$/,
56+
loader: 'ignore-loader'
57+
},
5458
{
5559
test: /constants.json$/,
5660
include: /(src)/,

0 commit comments

Comments
 (0)