aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorcedricnjanga2017-11-22 14:52:20 +0100
committercedricnjanga2017-11-22 14:52:20 +0100
commitea27e90db9d3d3c8d02bdbce28bad2bd7e5aa8be (patch)
treee3fa777925ffb2710e0239ce974e62f0bdedd2ad /bin
parentffe835e4feb43796ea1a122aba8df087252fe2e5 (diff)
downloadchouette-core-ea27e90db9d3d3c8d02bdbce28bad2bd7e5aa8be.tar.bz2
Add webpack binstubs
Diffstat (limited to 'bin')
-rwxr-xr-xbin/webpack17
-rwxr-xr-xbin/webpack-dev-server17
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")