Commit 7ed9ba19 by Sarah Fischmann

Update webpack config and translation tools to translate .jsx files

EDUCATOR-823

Updated confinguration of webpack and translation tools to work with jsx files

EDUCATOR-823

changes to webpack config

Fixed space issue
parent d613f37d
...@@ -4,3 +4,6 @@ input_encoding = utf-8 ...@@ -4,3 +4,6 @@ input_encoding = utf-8
[django: **/template/**.html] [django: **/template/**.html]
input_encoding = utf-8 input_encoding = utf-8
[reactjs: **.jsx]
input_encoding = utf-8
...@@ -93,7 +93,7 @@ var wpconfig = { ...@@ -93,7 +93,7 @@ var wpconfig = {
) )
}, },
{ {
test: /\.js$/, test: /\.(js|jsx)$/,
exclude: [ exclude: [
/node_modules/, /node_modules/,
namespacedRequireFiles namespacedRequireFiles
...@@ -125,7 +125,7 @@ var wpconfig = { ...@@ -125,7 +125,7 @@ var wpconfig = {
}, },
resolve: { resolve: {
extensions: ['.js', '.json', '.coffee'], extensions: ['.js', '.jsx', '.json', '.coffee'],
alias: { alias: {
'edx-ui-toolkit': 'edx-ui-toolkit/src/', // @TODO: some paths in toolkit are not valid relative paths 'edx-ui-toolkit': 'edx-ui-toolkit/src/', // @TODO: some paths in toolkit are not valid relative paths
'jquery.ui': 'jQuery-File-Upload/js/vendor/jquery.ui.widget.js', 'jquery.ui': 'jQuery-File-Upload/js/vendor/jquery.ui.widget.js',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment