webpacker 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.travis.yml +4 -4
- data/CHANGELOG.md +14 -0
- data/Gemfile.lock +9 -9
- data/README.md +17 -2
- data/docs/docker.md +1 -1
- data/lib/install/angular.rb +11 -0
- data/lib/install/examples/coffee/hello_coffee.coffee +1 -1
- data/lib/install/examples/erb/hello_erb.js.erb +1 -1
- data/lib/install/examples/stimulus/application.js +6 -0
- data/lib/install/examples/stimulus/controllers/hello_controller.js +18 -0
- data/lib/install/examples/typescript/hello_typescript.ts +1 -1
- data/lib/install/stimulus.rb +12 -0
- data/lib/install/template.rb +18 -3
- data/lib/install/vue.rb +11 -0
- data/lib/tasks/installers.rake +2 -1
- data/lib/tasks/webpacker.rake +1 -0
- data/lib/webpacker/helper.rb +5 -1
- data/lib/webpacker/railtie.rb +11 -11
- data/lib/webpacker/version.rb +1 -1
- data/package.json +10 -10
- data/package/__tests__/config.js +25 -0
- data/package/config.js +9 -0
- data/package/environment.js +1 -4
- data/test/configuration_test.rb +2 -1
- data/test/helper_test.rb +7 -0
- data/test/test_app/public/packs/manifest.json +2 -1
- data/yarn.lock +371 -332
- metadata +7 -3
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webpacker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-02-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -133,6 +133,8 @@ files:
|
|
|
133
133
|
- lib/install/examples/react/.babelrc
|
|
134
134
|
- lib/install/examples/react/hello_react.jsx
|
|
135
135
|
- lib/install/examples/react/tsconfig.json
|
|
136
|
+
- lib/install/examples/stimulus/application.js
|
|
137
|
+
- lib/install/examples/stimulus/controllers/hello_controller.js
|
|
136
138
|
- lib/install/examples/typescript/hello_typescript.ts
|
|
137
139
|
- lib/install/examples/typescript/tsconfig.json
|
|
138
140
|
- lib/install/examples/vue/app.vue
|
|
@@ -144,6 +146,7 @@ files:
|
|
|
144
146
|
- lib/install/loaders/typescript.js
|
|
145
147
|
- lib/install/loaders/vue.js
|
|
146
148
|
- lib/install/react.rb
|
|
149
|
+
- lib/install/stimulus.rb
|
|
147
150
|
- lib/install/template.rb
|
|
148
151
|
- lib/install/typescript.rb
|
|
149
152
|
- lib/install/vue.rb
|
|
@@ -172,6 +175,7 @@ files:
|
|
|
172
175
|
- lib/webpacker/version.rb
|
|
173
176
|
- lib/webpacker/webpack_runner.rb
|
|
174
177
|
- package.json
|
|
178
|
+
- package/__tests__/config.js
|
|
175
179
|
- package/__tests__/environment.js
|
|
176
180
|
- package/config.js
|
|
177
181
|
- package/config_types/__tests__/config_list.js
|
|
@@ -232,7 +236,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
236
|
version: '0'
|
|
233
237
|
requirements: []
|
|
234
238
|
rubyforge_project:
|
|
235
|
-
rubygems_version: 2.
|
|
239
|
+
rubygems_version: 2.7.3
|
|
236
240
|
signing_key:
|
|
237
241
|
specification_version: 4
|
|
238
242
|
summary: Use webpack to manage app-like JavaScript modules in Rails
|