dopstick 0.0.5 → 0.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67d8b2be08b351c27515e62ca76bee7b29e8d98980f0624ca7b6e931b3dfcfc4
4
- data.tar.gz: d878cb9f1762827c315121c2ab107af72181f33362a9944c10903b733da01e3e
3
+ metadata.gz: 17fe9695f451b433549bf25b5d8d5484388771739fc32333c4d3a4a6bcfa9348
4
+ data.tar.gz: 4791e172a00147a6e7e920eff00e15b26c6ec73d3964a4854e91847989049da3
5
5
  SHA512:
6
- metadata.gz: eac9428db86f3c28346a4ae6dc38cd6dc08d90f4fdef7b35179c4a0b36bfdb2c67244967d7791050012a897ecffbee29e39a45662483dac7b2a0127bb4b705cd
7
- data.tar.gz: ca31cdc4a53c79daa502559b1cc4793b24bbb6577de57fcfc1f0e253929d737abcaf446d815bd8458cf2c5a625e918006cd1b7c4be00b43b15902bc33cd4f101
6
+ metadata.gz: 65edec1f5c5d373b5ead2dd1631fe4b5638cd396a11d10ad727e35ac6fc8f010134a06f9fb0c4b27b4b95ef62fb9d4556abfe2123252e3d933a07a36348065f1
7
+ data.tar.gz: df7abe336abf35acaea9cc3e295cd547a5c376f448ffe80e9862d909d78b15d3ad300930c376c50c0a0ee2d5f3415b9a18b595ec75e9ff2ee94a7752aaf86ada
@@ -11,6 +11,11 @@ Prefix your message with one of the following:
11
11
  - [Security] in case of vulnerabilities.
12
12
  -->
13
13
 
14
+ ## Unreleased
15
+
16
+ - [Fixed] Babel loader's order is backwards, so TypeScript first, then
17
+ JavaScript.
18
+
14
19
  ## v0.0.5 - 2020-11-14
15
20
 
16
21
  - [Fixed] Jest configuration wasn't considering the full import path.
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Nando Vieira"]
9
9
  spec.email = ["me@fnando.com"]
10
10
 
11
- spec.summary = "Generate a project skeleton for creating a Ruby/Node" \
11
+ spec.summary = "Generate a project skeleton for creating a Ruby/NPM " \
12
12
  "package."
13
13
  spec.description = spec.summary
14
14
  spec.license = "MIT"
@@ -111,7 +111,7 @@ module Dopstick
111
111
  end
112
112
 
113
113
  no_commands do
114
- def render_tree(skip_content_spaces = false, &block)
114
+ def render_tree(skip_content_spaces = false)
115
115
  content = []
116
116
 
117
117
  options.namespace_names.each_with_index do |name, count|
@@ -120,7 +120,7 @@ module Dopstick
120
120
 
121
121
  spacer = skip_content_spaces ? "" : " "
122
122
 
123
- content << (spacer * options.namespace_size) + block.call
123
+ content << (spacer * options.namespace_size) + yield
124
124
 
125
125
  (options.namespace_size - 1).downto(0) do |count|
126
126
  content << "#{' ' * count}end"
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.required_ruby_version = Gem::Requirement.new(">= <%= options.oldest_ruby_version %>")
15
15
 
16
16
  github_url = <%= options.github_url.inspect %>
17
- github_tree_url = "#{options.github_url}/tree/v#{spec.version}"
17
+ github_tree_url = "#{github_url}/tree/v#{spec.version}"
18
18
 
19
19
  spec.homepage = github_url
20
20
  spec.metadata["homepage_uri"] = spec.homepage
@@ -16,7 +16,7 @@ module.exports = {
16
16
  rules: [
17
17
  {
18
18
  test: /\.ts$/,
19
- use: [{ loader: "ts-loader" }, { loader: "babel-loader" }],
19
+ use: [{ loader: "babel-loader" }, { loader: "ts-loader" }],
20
20
  exclude: /node_modules/,
21
21
  },
22
22
  {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dopstick
4
- VERSION = "0.0.5"
4
+ VERSION = "0.0.6"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dopstick
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-14 00:00:00.000000000 Z
11
+ date: 2020-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -122,7 +122,7 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
- description: Generate a project skeleton for creating a Ruby/Nodepackage.
125
+ description: Generate a project skeleton for creating a Ruby/NPM package.
126
126
  email:
127
127
  - me@fnando.com
128
128
  executables:
@@ -208,10 +208,10 @@ licenses:
208
208
  metadata:
209
209
  homepage_uri: https://github.com/fnando/dopstick
210
210
  bug_tracker_uri: https://github.com/fnando/dopstick/issues
211
- source_code_uri: https://github.com/fnando/dopstick/tree/v0.0.5
212
- changelog_uri: https://github.com/fnando/dopstick/tree/v0.0.5/CHANGELOG.md
213
- documentation_uri: https://github.com/fnando/dopstick/tree/v0.0.5/README.md
214
- license_uri: https://github.com/fnando/dopstick/tree/v0.0.5/LICENSE.md
211
+ source_code_uri: https://github.com/fnando/dopstick/tree/v0.0.6
212
+ changelog_uri: https://github.com/fnando/dopstick/tree/v0.0.6/CHANGELOG.md
213
+ documentation_uri: https://github.com/fnando/dopstick/tree/v0.0.6/README.md
214
+ license_uri: https://github.com/fnando/dopstick/tree/v0.0.6/LICENSE.md
215
215
  post_install_message:
216
216
  rdoc_options: []
217
217
  require_paths:
@@ -230,5 +230,5 @@ requirements: []
230
230
  rubygems_version: 3.1.4
231
231
  signing_key:
232
232
  specification_version: 4
233
- summary: Generate a project skeleton for creating a Ruby/Nodepackage.
233
+ summary: Generate a project skeleton for creating a Ruby/NPM package.
234
234
  test_files: []