Skip to content

Commit

Permalink
Reflected RiotJS Style Guide for teams by De Voorhoede.
Browse files Browse the repository at this point in the history
Use *.tag.html extension
  • Loading branch information
Kotaro Sugawara authored and Kotaro Sugawara committed Apr 28, 2017
1 parent cdd4f2a commit 1c71bf0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions webpack/common.config.js
Expand Up @@ -23,7 +23,7 @@ export default (env) => {
module: {
rules: [
{ // js
test: /\.(js|tag)$/,
test: /\.(js|tag|tag.html)$/,
include: /src/,
exclude: /node_modules/,
enforce: 'post',
Expand Down Expand Up @@ -80,7 +80,7 @@ export default (env) => {
]
},
resolve: {
extensions: ['.js'],
extensions: ['.js', '.html'],
},
plugins: [
new webpack.ProvidePlugin({
Expand Down
2 changes: 1 addition & 1 deletion webpack/dev.config.js
Expand Up @@ -12,7 +12,7 @@ export default () => {
module: {
rules: [
{ // riot
test: /\.tag$/,
test: /\.(tag|tag.html)$/,
include: /src/,
exclude: /node_modules/,
enforce: 'pre',
Expand Down
2 changes: 1 addition & 1 deletion webpack/prod.config.js
Expand Up @@ -5,7 +5,7 @@ export default () => {
module: {
rules: [
{ // riot
test: /\.tag$/,
test: /\.(tag|tag.html)$/,
include: /src/,
exclude: /node_modules/,
enforce: 'pre',
Expand Down

0 comments on commit 1c71bf0

Please sign in to comment.