diff options
author | Javan Makhmali <javan@javan.us> | 2018-02-12 10:34:29 -0500 |
---|---|---|
committer | Javan Makhmali <javan@javan.us> | 2018-02-12 10:34:29 -0500 |
commit | 2f13b3c9fe21debec4bd9afe4601125f4fe29ce2 (patch) | |
tree | 973bfc4599de65fddfe39206374b7424f4e7e7ec /test/dummy/config/webpack | |
parent | 63add5acc4a9bd84907bf6bf17de307792336539 (diff) | |
download | rails-2f13b3c9fe21debec4bd9afe4601125f4fe29ce2.tar.gz rails-2f13b3c9fe21debec4bd9afe4601125f4fe29ce2.tar.bz2 rails-2f13b3c9fe21debec4bd9afe4601125f4fe29ce2.zip |
Pull activetext.js into dummy app with webpacker
Diffstat (limited to 'test/dummy/config/webpack')
-rw-r--r-- | test/dummy/config/webpack/development.js | 3 | ||||
-rw-r--r-- | test/dummy/config/webpack/environment.js | 3 | ||||
-rw-r--r-- | test/dummy/config/webpack/production.js | 3 | ||||
-rw-r--r-- | test/dummy/config/webpack/test.js | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/test/dummy/config/webpack/development.js b/test/dummy/config/webpack/development.js new file mode 100644 index 0000000000..81269f6513 --- /dev/null +++ b/test/dummy/config/webpack/development.js @@ -0,0 +1,3 @@ +const environment = require('./environment') + +module.exports = environment.toWebpackConfig() diff --git a/test/dummy/config/webpack/environment.js b/test/dummy/config/webpack/environment.js new file mode 100644 index 0000000000..d16d9af743 --- /dev/null +++ b/test/dummy/config/webpack/environment.js @@ -0,0 +1,3 @@ +const { environment } = require('@rails/webpacker') + +module.exports = environment diff --git a/test/dummy/config/webpack/production.js b/test/dummy/config/webpack/production.js new file mode 100644 index 0000000000..81269f6513 --- /dev/null +++ b/test/dummy/config/webpack/production.js @@ -0,0 +1,3 @@ +const environment = require('./environment') + +module.exports = environment.toWebpackConfig() diff --git a/test/dummy/config/webpack/test.js b/test/dummy/config/webpack/test.js new file mode 100644 index 0000000000..81269f6513 --- /dev/null +++ b/test/dummy/config/webpack/test.js @@ -0,0 +1,3 @@ +const environment = require('./environment') + +module.exports = environment.toWebpackConfig() |