diff options
| author | cedricnjanga | 2017-11-22 14:52:20 +0100 |
|---|---|---|
| committer | cedricnjanga | 2017-11-22 14:52:20 +0100 |
| commit | ea27e90db9d3d3c8d02bdbce28bad2bd7e5aa8be (patch) | |
| tree | e3fa777925ffb2710e0239ce974e62f0bdedd2ad /bin | |
| parent | ffe835e4feb43796ea1a122aba8df087252fe2e5 (diff) | |
| download | chouette-core-ea27e90db9d3d3c8d02bdbce28bad2bd7e5aa8be.tar.bz2 | |
Add webpack binstubs
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/webpack | 17 | ||||
| -rwxr-xr-x | bin/webpack-dev-server | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/bin/webpack b/bin/webpack new file mode 100755 index 000000000..9d3800c74 --- /dev/null +++ b/bin/webpack @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true +# +# This file was generated by Bundler. +# +# The application 'webpack' is installed as part of a gem, and +# this file is here to facilitate running it. +# + +require "pathname" +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", + Pathname.new(__FILE__).realpath) + +require "rubygems" +require "bundler/setup" + +load Gem.bin_path("webpacker", "webpack") diff --git a/bin/webpack-dev-server b/bin/webpack-dev-server new file mode 100755 index 000000000..cf701102a --- /dev/null +++ b/bin/webpack-dev-server @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true +# +# This file was generated by Bundler. +# +# The application 'webpack-dev-server' is installed as part of a gem, and +# this file is here to facilitate running it. +# + +require "pathname" +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", + Pathname.new(__FILE__).realpath) + +require "rubygems" +require "bundler/setup" + +load Gem.bin_path("webpacker", "webpack-dev-server") |
