jetpacker 0.2.0 → 0.3.0
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 +4 -4
- data/CHANGELOG.jetpacker.md +3 -0
- data/lib/install/template.rb +6 -6
- data/lib/jetpacker/version.rb +1 -1
- metadata +3 -4
- data/lib/install/javascript/packs/application.js +0 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c6db5938f2a3c413822c185088945252016ebc7bfb325a980d23c90aff05e1a
|
|
4
|
+
data.tar.gz: 47f673c09ca891026c9aae0b0b7b43de6922ecfa01881621243dcfc8ee0f9582
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6245a051cdfbd09f553b5727997d6fd6962791fba7a45e9b2a567ca3842d9d45e1bf7363f65c055fb0fa5f4f1605b17cb6d7a0a063a27c2094b54eb02183dbb
|
|
7
|
+
data.tar.gz: fd3eb411512e9c99e657261518122d8c8495478013c1e9c5aa32df73a487b9db3c78bee7b605f13856260dcd1a4b2e0ad7d7b508dff66e3468db815c76f36bfb
|
data/CHANGELOG.jetpacker.md
CHANGED
|
@@ -3,5 +3,8 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.3.0]
|
|
7
|
+
- dont install javascript/packs/application.js, jets adds a custom one
|
|
8
|
+
|
|
6
9
|
## [0.2.0]
|
|
7
10
|
- actual initial release
|
data/lib/install/template.rb
CHANGED
|
@@ -13,12 +13,12 @@ copy_file "#{__dir__}/config/babel.config.js", "babel.config.js"
|
|
|
13
13
|
say "Copying .browserslistrc to app root directory"
|
|
14
14
|
copy_file "#{__dir__}/config/.browserslistrc", ".browserslistrc"
|
|
15
15
|
|
|
16
|
-
if Dir.exists?(Webpacker.config.source_path)
|
|
17
|
-
|
|
18
|
-
else
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
end
|
|
16
|
+
# if Dir.exists?(Webpacker.config.source_path)
|
|
17
|
+
# say "The JavaScript app source directory already exists"
|
|
18
|
+
# else
|
|
19
|
+
# say "Creating JavaScript app source directory"
|
|
20
|
+
# directory "#{__dir__}/javascript", Webpacker.config.source_path
|
|
21
|
+
# end
|
|
22
22
|
|
|
23
23
|
apply "#{__dir__}/binstubs.rb"
|
|
24
24
|
|
data/lib/jetpacker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jetpacker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
@@ -176,7 +176,6 @@ files:
|
|
|
176
176
|
- lib/install/examples/typescript/tsconfig.json
|
|
177
177
|
- lib/install/examples/vue/app.vue
|
|
178
178
|
- lib/install/examples/vue/hello_vue.js
|
|
179
|
-
- lib/install/javascript/packs/application.js
|
|
180
179
|
- lib/install/loaders/coffee.js
|
|
181
180
|
- lib/install/loaders/elm.js
|
|
182
181
|
- lib/install/loaders/erb.js
|
|
@@ -288,8 +287,8 @@ homepage: https://github.com/tonguero/jetpacker
|
|
|
288
287
|
licenses:
|
|
289
288
|
- MIT
|
|
290
289
|
metadata:
|
|
291
|
-
source_code_uri: https://github.com/tongueroo/jetpacker/tree/v0.
|
|
292
|
-
changelog_uri: https://github.com/tongueroo/jetpacker/blob/v0.
|
|
290
|
+
source_code_uri: https://github.com/tongueroo/jetpacker/tree/v0.3.0
|
|
291
|
+
changelog_uri: https://github.com/tongueroo/jetpacker/blob/v0.3.0/CHANGELOG.md
|
|
293
292
|
post_install_message:
|
|
294
293
|
rdoc_options: []
|
|
295
294
|
require_paths:
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* eslint no-console:0 */
|
|
2
|
-
// This file is automatically compiled by Webpack, along with any other files
|
|
3
|
-
// present in this directory. You're encouraged to place your actual application logic in
|
|
4
|
-
// a relevant structure within app/javascript and only use these pack files to reference
|
|
5
|
-
// that code so it'll be compiled.
|
|
6
|
-
//
|
|
7
|
-
// To reference this file, add <%= javascript_pack_tag 'application' %> to the appropriate
|
|
8
|
-
// layout file, like app/views/layouts/application.html.erb
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
// Uncomment to copy all static images under ../images to the output folder and reference
|
|
12
|
-
// them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>)
|
|
13
|
-
// or the `imagePath` JavaScript helper below.
|
|
14
|
-
//
|
|
15
|
-
// const images = require.context('../images', true)
|
|
16
|
-
// const imagePath = (name) => images(name, true)
|
|
17
|
-
|
|
18
|
-
console.log('Hello World from Webpacker')
|