diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-17 17:48:32 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-17 17:48:32 -0700 |
commit | 03b18410071f4e8a9a2daff13e02881e5f1a1c12 (patch) | |
tree | ef5e34c57c10418487f72d72085b2599125f04cb /test/dummy/config/webpack | |
parent | 12deb313e02680bbd1c07ada79a890d6734d1bf3 (diff) | |
download | rails-03b18410071f4e8a9a2daff13e02881e5f1a1c12.tar.gz rails-03b18410071f4e8a9a2daff13e02881e5f1a1c12.tar.bz2 rails-03b18410071f4e8a9a2daff13e02881e5f1a1c12.zip |
Add dummy app for testing
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() |