tailwind_dsl 0.0.18 → 0.0.19

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: 31693c85f869ecb9cb626e388f1a9f2aebfb5c6622c54894eb3b8f59f3995965
4
- data.tar.gz: 857b98da54c538bab4f8204f04d320541ee810c14fe6de3d8431c4e6b6936efa
3
+ metadata.gz: b8465b256d515f8ecb6c81cb2e0c499a5ca3b0a3ab3e5d2ba614c55ef12049ec
4
+ data.tar.gz: a9f9bbbad156fefd8f7d04e43ab7cc4ac2b4634912ac7ef34cbd27a64236e4f1
5
5
  SHA512:
6
- metadata.gz: e202d10d63622982c89251ac5042bd8ac7400c7bcf634802752d01676519ed80a34ec0b610803ca90b3ae6060bfaccdc84e40bb74cd8675a71d268fb9cf457dc
7
- data.tar.gz: ca1a51d6a3a36018684501b23a01542e5d80807901b8d5e3303fdab963d5f6a284175032435624f9ac6a7ad08a2cccf4dbf4501778f0e8868be2f6dbed69c26a
6
+ metadata.gz: bba87ff679f1dde5650731005021e5c7061a6146eb47c4e0370325f330cbefb264604a6d320c3b34d9b8d2030a5011796d6d3e46330b1528189f94dc591a873d
7
+ data.tar.gz: b5379fe421463db2fea7672bf570e7fedf100c39e6259e98ad3d67099fe0873fe831d3700dad4dfdb68f16a0099f432ff5c25e8aeff033cc691f3ffa554d8eea
@@ -216,6 +216,7 @@ KManager.action :domain_model do
216
216
  .field(:tailwind_config_file , type: :string)
217
217
  .field(:settings_file , type: :string)
218
218
  .field(:data_file , type: :string)
219
+ .field(:model_file , type: :string)
219
220
  .field(:astro_file , type: :string)
220
221
  end
221
222
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.0.18](https://github.com/klueless-io/tailwind_dsl/compare/v0.0.17...v0.0.18) (2022-10-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * minor refactor on long extensions ([70615ad](https://github.com/klueless-io/tailwind_dsl/commit/70615adc3bb37267e930ac36b92472f8b054f2d7))
7
+ * resetting root path will remove transient files and empty directories, but not custom files ([07ef5ae](https://github.com/klueless-io/tailwind_dsl/commit/07ef5ae71fda4a92b9a9312f3f4de2bca7151505))
8
+ * resetting root path will remove transient files and empty directories, but not custom files ([e546bed](https://github.com/klueless-io/tailwind_dsl/commit/e546bed751f4e996802340a6573b68663224d555))
9
+
1
10
  ## [0.0.17](https://github.com/klueless-io/tailwind_dsl/compare/v0.0.16...v0.0.17) (2022-10-19)
2
11
 
3
12
 
@@ -51,24 +51,6 @@ module TailwindDsl
51
51
  raise 'Target path does not exist' unless Dir.exist?(target_root_path)
52
52
  end
53
53
 
54
- def clear_root_path
55
- Dir.glob("#{target_root_path}/**/*")
56
- .select { |path| transient_file?(path) }
57
- .each { |path| File.delete(path) }
58
-
59
- Dir.glob("#{target_root_path}/**/")
60
- .reverse_each { |d| Dir.rmdir d if Dir.entries(d).size == 2 }
61
- end
62
-
63
- def transient_file?(path)
64
- return false if File.directory?(path)
65
-
66
- ext = File.basename(path).split('.', 2)[1]
67
- ext = ext.nil? ? '' : ".#{ext}"
68
-
69
- TRANSIENT_FILE_EXTENSIONS.include?(ext)
70
- end
71
-
72
54
  def query_components
73
55
  RawComponentQuery.query(uikit,
74
56
  source_root_path: source_root_path,
@@ -216,6 +198,24 @@ module TailwindDsl
216
198
  }
217
199
  }
218
200
  end
201
+
202
+ def clear_root_path
203
+ Dir.glob("#{target_root_path}/**/*")
204
+ .select { |path| transient_file?(path) }
205
+ .each { |path| File.delete(path) }
206
+
207
+ Dir.glob("#{target_root_path}/**/")
208
+ .reverse_each { |d| Dir.rmdir d if Dir.entries(d).size == 2 }
209
+ end
210
+
211
+ def transient_file?(path)
212
+ return false if File.directory?(path)
213
+
214
+ ext = File.basename(path).split('.', 2)[1]
215
+ ext = ext.nil? ? '' : ".#{ext}"
216
+
217
+ TRANSIENT_FILE_EXTENSIONS.include?(ext)
218
+ end
219
219
  end
220
220
  end
221
221
  end
@@ -29,8 +29,18 @@ module TailwindDsl
29
29
  puts format('%-30<key>s : %<value>s', key: 'Group folder', value: folder)
30
30
  end
31
31
  end
32
- FilePath = Struct.new(:source_file, :target_html_file, :target_clean_html_file, :target_tailwind_config_file, :target_settings_file, :target_data_file, :target_astro_file,
33
- keyword_init: true) do
32
+
33
+ FilePath = Struct.new(
34
+ :source_file,
35
+ :target_html_file,
36
+ :target_clean_html_file,
37
+ :target_tailwind_config_file,
38
+ :target_settings_file,
39
+ :target_data_file,
40
+ :target_model_file,
41
+ :target_astro_file,
42
+ keyword_init: true
43
+ ) do
34
44
  # rubocop:disable Metrics/AbcSize
35
45
  def debug
36
46
  puts format('%-30<key>s : %<value>s', key: 'Source file', value: source_file)
@@ -39,6 +49,7 @@ module TailwindDsl
39
49
  puts format('%-30<key>s : %<value>s', key: 'Target tailwind config file', value: target_tailwind_config_file)
40
50
  puts format('%-30<key>s : %<value>s', key: 'Target settings file', value: target_settings_file)
41
51
  puts format('%-30<key>s : %<value>s', key: 'Target data file', value: target_data_file)
52
+ puts format('%-30<key>s : %<value>s', key: 'Target model file', value: target_model_file)
42
53
  puts format('%-30<key>s : %<value>s', key: 'Target astro file', value: target_astro_file)
43
54
  end
44
55
  # rubocop:enable Metrics/AbcSize
@@ -176,6 +187,7 @@ module TailwindDsl
176
187
  target_tailwind_config_file: file.target.tailwind_config_file,
177
188
  target_settings_file: file.target.settings_file,
178
189
  target_data_file: file.target.data_file,
190
+ target_model_file: file.target.model_file,
179
191
  target_astro_file: file.target.astro_file
180
192
  }
181
193
  end
@@ -189,6 +201,7 @@ module TailwindDsl
189
201
  target_tailwind_config_file: File.join(target_path, file.target.tailwind_config_file),
190
202
  target_settings_file: File.join(target_path, file.target.settings_file),
191
203
  target_data_file: File.join(target_path, file.target.data_file),
204
+ target_model_file: File.join(target_path, file.target.model_file),
192
205
  target_astro_file: File.join(target_path, file.target.astro_file)
193
206
  }
194
207
  end
@@ -12,6 +12,7 @@ module TailwindDsl
12
12
  attr_accessor :tailwind_config_file
13
13
  attr_accessor :settings_file
14
14
  attr_accessor :data_file
15
+ attr_accessor :model_file
15
16
  attr_accessor :astro_file
16
17
 
17
18
  def initialize(**args)
@@ -20,6 +21,7 @@ module TailwindDsl
20
21
  @tailwind_config_file = grab_arg(args, :tailwind_config_file, guard: 'Missing tailwind_config_file')
21
22
  @settings_file = grab_arg(args, :settings_file, guard: 'Missing settings_file')
22
23
  @data_file = grab_arg(args, :data_file, guard: 'Missing data_file')
24
+ @model_file = grab_arg(args, :model_file) # , guard: 'Missing model_file')
23
25
  @astro_file = grab_arg(args, :astro_file, guard: 'Missing astro_file')
24
26
  end
25
27
 
@@ -30,6 +32,7 @@ module TailwindDsl
30
32
  tailwind_config_file: tailwind_config_file,
31
33
  settings_file: settings_file,
32
34
  data_file: data_file,
35
+ model_file: model_file,
33
36
  astro_file: astro_file
34
37
  }
35
38
  end
@@ -108,6 +108,7 @@ module TailwindDsl
108
108
  tailwind_config_file: "#{key}.tailwind.config.js",
109
109
  settings_file: "#{key}.settings.json",
110
110
  data_file: "#{key}.data.json",
111
+ model_file: "#{key}.model.rb",
111
112
  astro_file: "#{key}.astro"
112
113
  )
113
114
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TailwindDsl
4
- VERSION = '0.0.18'
4
+ VERSION = '0.0.19'
5
5
  end
data/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "tailwind_dsl",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "tailwind_dsl",
9
- "version": "0.0.18",
9
+ "version": "0.0.19",
10
10
  "devDependencies": {
11
11
  "@klueless-js/semantic-release-rubygem": "github:klueless-js/semantic-release-rubygem",
12
12
  "@semantic-release/changelog": "^6.0.1",
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwind_dsl",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "Tailwind DSL will build tailwind websites useing Domain Specific Language conventions",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwind_dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.18
4
+ version: 0.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-20 00:00:00.000000000 Z
11
+ date: 2022-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cmdlet