simplecov-tailwindcss 2.1.1 → 2.1.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 +4 -4
- data/.github/CODE_OF_CONDUCT.md +1 -1
- data/.github/CONTRIBUTING.md +1 -1
- data/.github/FUNDING.yml +2 -0
- data/.github/ISSUE_TEMPLATE/bug_report.yml +4 -0
- data/.github/dependabot.yml +19 -0
- data/.github/workflows/builds.yml +5 -7
- data/.github/workflows/github_publish.yml +1 -1
- data/.github/workflows/lints.yml +2 -5
- data/.github/workflows/rubygem_publish.yml +1 -1
- data/.github/workflows/tests.yml +72 -4
- data/.prettierignore +2 -1
- data/.vscode/settings.json +2 -1
- data/CHANGELOG.md +13 -0
- data/README.md +3 -56
- data/dist/app.js +3 -3
- data/lib/simplecov-tailwindcss/version.rb +1 -1
- data/package.json +13 -10
- data/prettier.config.js +20 -0
- data/simplecov-tailwindcss.gemspec +2 -2
- data/yarn.lock +244 -173
- metadata +7 -6
- data/.prettierrc.json +0 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a34f0fa86c77ab1ed362288b9ed46149750507b3f7a4d9667dcbdffdac82237
|
|
4
|
+
data.tar.gz: 129ece0962a3bc82d3839016068b23757046e771a14164318f49089d0ae66106
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c632e16e806771e162c66b605cc6b40be67723b11550dc104297c32873c0ef3731f915a5556d0ad41fbfa17f3c6f9cf79192a4b664fb775ec0e670d473c817af
|
|
7
|
+
data.tar.gz: 32de41b1f912db2fa5d86518973e64b7afee993c9292bb3e77c5c8933f348f979b630b401f23d05991a1a3d79fb79571c35a95d69931669f76801c86940e67de
|
data/.github/CODE_OF_CONDUCT.md
CHANGED
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
|
55
55
|
## Enforcement
|
|
56
56
|
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at github@chiefpansancolt.
|
|
58
|
+
reported by contacting the project team at github@chiefpansancolt.dev. All
|
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
data/.github/CONTRIBUTING.md
CHANGED
|
@@ -9,7 +9,7 @@ and stronger!
|
|
|
9
9
|
This project and everyone participating in it is governed by the [Simplecov
|
|
10
10
|
Material Code of Conduct](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/CODE_OF_CONDUCT.md).
|
|
11
11
|
By participating, you are expected to uphold this code. Please report
|
|
12
|
-
unacceptable behavior to github@chiefpansancolt.
|
|
12
|
+
unacceptable behavior to github@chiefpansancolt.dev.
|
|
13
13
|
|
|
14
14
|
## How can I Contribute
|
|
15
15
|
|
data/.github/FUNDING.yml
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
# Maintain dependencies for GitHub Actions
|
|
4
|
+
- package-ecosystem: 'github-actions'
|
|
5
|
+
directory: '/'
|
|
6
|
+
schedule:
|
|
7
|
+
interval: 'weekly'
|
|
8
|
+
|
|
9
|
+
# Maintain dependencies for npm
|
|
10
|
+
- package-ecosystem: 'npm'
|
|
11
|
+
directory: '/'
|
|
12
|
+
schedule:
|
|
13
|
+
interval: 'weekly'
|
|
14
|
+
|
|
15
|
+
# Maintain dependencies for Ruby
|
|
16
|
+
- package-ecosystem: 'bundler'
|
|
17
|
+
directory: '/'
|
|
18
|
+
schedule:
|
|
19
|
+
interval: 'weekly'
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
name: Build
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
4
|
pull_request:
|
|
8
5
|
branches:
|
|
9
6
|
- main
|
|
@@ -19,7 +16,7 @@ jobs:
|
|
|
19
16
|
|
|
20
17
|
steps:
|
|
21
18
|
- name: Check out Git repository
|
|
22
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v3
|
|
23
20
|
|
|
24
21
|
- name: Set up Node.js
|
|
25
22
|
uses: actions/setup-node@v3
|
|
@@ -44,7 +41,7 @@ jobs:
|
|
|
44
41
|
|
|
45
42
|
steps:
|
|
46
43
|
- name: Check out Git repository
|
|
47
|
-
uses: actions/checkout@
|
|
44
|
+
uses: actions/checkout@v3
|
|
48
45
|
|
|
49
46
|
- name: Set up Node.js
|
|
50
47
|
uses: actions/setup-node@v3
|
|
@@ -66,10 +63,11 @@ jobs:
|
|
|
66
63
|
run-gem-build:
|
|
67
64
|
name: Run Gem Build
|
|
68
65
|
runs-on: ubuntu-latest
|
|
66
|
+
needs: [run-css-build, run-js-build]
|
|
69
67
|
|
|
70
68
|
steps:
|
|
71
69
|
- name: Check out Git repository
|
|
72
|
-
uses: actions/checkout@
|
|
70
|
+
uses: actions/checkout@v3
|
|
73
71
|
|
|
74
72
|
- name: Set up Ruby
|
|
75
73
|
uses: ruby/setup-ruby@v1
|
|
@@ -78,7 +76,7 @@ jobs:
|
|
|
78
76
|
|
|
79
77
|
- name: Install Ruby Gem dependencies
|
|
80
78
|
run: |
|
|
81
|
-
gem install bundler -v 2.
|
|
79
|
+
gem install bundler -v 2.4.10
|
|
82
80
|
bundle install --jobs 4 --retry 3
|
|
83
81
|
|
|
84
82
|
- name: Build Gem
|
data/.github/workflows/lints.yml
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
name: Lint
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
4
|
pull_request:
|
|
8
5
|
branches:
|
|
9
6
|
- main
|
|
@@ -19,7 +16,7 @@ jobs:
|
|
|
19
16
|
|
|
20
17
|
steps:
|
|
21
18
|
- name: Check out Git repository
|
|
22
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v3
|
|
23
20
|
|
|
24
21
|
- name: Set up Node.js
|
|
25
22
|
uses: actions/setup-node@v3
|
|
@@ -36,7 +33,7 @@ jobs:
|
|
|
36
33
|
|
|
37
34
|
- name: Install Ruby Gem dependencies
|
|
38
35
|
run: |
|
|
39
|
-
gem install bundler -v 2.4.
|
|
36
|
+
gem install bundler -v 2.4.10
|
|
40
37
|
bundle install --jobs 4 --retry 3
|
|
41
38
|
|
|
42
39
|
- name: Run linters
|
data/.github/workflows/tests.yml
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
name: Tests
|
|
2
2
|
|
|
3
|
-
on:
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
4
7
|
|
|
5
8
|
jobs:
|
|
6
|
-
ruby-test:
|
|
9
|
+
ruby-test-old:
|
|
7
10
|
runs-on: ubuntu-latest
|
|
8
11
|
|
|
9
12
|
strategy:
|
|
10
13
|
matrix:
|
|
11
|
-
ruby: [
|
|
14
|
+
ruby: [2.5.9]
|
|
12
15
|
|
|
13
16
|
steps:
|
|
14
17
|
- name: Checkout Code
|
|
15
|
-
uses: actions/checkout@
|
|
18
|
+
uses: actions/checkout@v3
|
|
16
19
|
- name: Set up Ruby
|
|
17
20
|
uses: ruby/setup-ruby@v1
|
|
18
21
|
with:
|
|
@@ -23,6 +26,71 @@ jobs:
|
|
|
23
26
|
gem install bundler -v 2.3.26
|
|
24
27
|
bundle install --jobs 4 --retry 3
|
|
25
28
|
bundle exec rake test
|
|
29
|
+
|
|
30
|
+
ruby-test-other:
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
|
|
33
|
+
strategy:
|
|
34
|
+
matrix:
|
|
35
|
+
ruby: [3.1.2, 3.0.4, 2.7.6, 2.6.10]
|
|
36
|
+
|
|
37
|
+
steps:
|
|
38
|
+
- name: Checkout Code
|
|
39
|
+
uses: actions/checkout@v3
|
|
40
|
+
- name: Set up Ruby
|
|
41
|
+
uses: ruby/setup-ruby@v1
|
|
42
|
+
with:
|
|
43
|
+
ruby-version: ${{ matrix.ruby }}
|
|
44
|
+
|
|
45
|
+
- name: Build and Test
|
|
46
|
+
run: |
|
|
47
|
+
gem install bundler -v 2.4.10
|
|
48
|
+
bundle install --jobs 4 --retry 3
|
|
49
|
+
bundle exec rake test
|
|
50
|
+
|
|
51
|
+
ruby-test-head:
|
|
52
|
+
runs-on: ubuntu-latest
|
|
53
|
+
needs: [ruby-test-old, ruby-test-other, ruby-test-latest]
|
|
54
|
+
|
|
55
|
+
strategy:
|
|
56
|
+
matrix:
|
|
57
|
+
ruby: [head]
|
|
58
|
+
|
|
59
|
+
steps:
|
|
60
|
+
- name: Checkout Code
|
|
61
|
+
uses: actions/checkout@v3
|
|
62
|
+
- name: Set up Ruby
|
|
63
|
+
uses: ruby/setup-ruby@v1
|
|
64
|
+
with:
|
|
65
|
+
ruby-version: ${{ matrix.ruby }}
|
|
66
|
+
|
|
67
|
+
- name: Build and Test
|
|
68
|
+
run: |
|
|
69
|
+
gem install bundler -v 2.4.10
|
|
70
|
+
bundle install --jobs 4 --retry 3
|
|
71
|
+
bundle exec rake test
|
|
72
|
+
|
|
73
|
+
ruby-test-latest:
|
|
74
|
+
runs-on: ubuntu-latest
|
|
75
|
+
needs: [ruby-test-other, ruby-test-old]
|
|
76
|
+
|
|
77
|
+
strategy:
|
|
78
|
+
matrix:
|
|
79
|
+
ruby: [3.2.1]
|
|
80
|
+
|
|
81
|
+
steps:
|
|
82
|
+
- name: Checkout Code
|
|
83
|
+
uses: actions/checkout@v3
|
|
84
|
+
- name: Set up Ruby
|
|
85
|
+
uses: ruby/setup-ruby@v1
|
|
86
|
+
with:
|
|
87
|
+
ruby-version: ${{ matrix.ruby }}
|
|
88
|
+
|
|
89
|
+
- name: Build and Test
|
|
90
|
+
run: |
|
|
91
|
+
gem install bundler -v 2.4.10
|
|
92
|
+
bundle install --jobs 4 --retry 3
|
|
93
|
+
bundle exec rake test
|
|
26
94
|
- name: Upload coverage results
|
|
27
95
|
uses: actions/upload-artifact@v3
|
|
28
96
|
with:
|
data/.prettierignore
CHANGED
data/.vscode/settings.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"yaml.schemas": {
|
|
3
|
-
"https://json.schemastore.org/github-issue-config.json": "file:///Users/chiefpansancolt/Documents/GitHub/ruby-gems/simplecov-tailwindcss/.github/ISSUE_TEMPLATE/config.yml"
|
|
3
|
+
"https://json.schemastore.org/github-issue-config.json": "file:///Users/chiefpansancolt/Documents/GitHub/ruby-gems/simplecov-tailwindcss/.github/ISSUE_TEMPLATE/config.yml",
|
|
4
|
+
"https://json.schemastore.org/dependabot-2.0.json": "file:///Users/chiefpansancolt/Documents/GitHub/ruby-gems/simplecov-tailwindcss/.github/dependabot.yml"
|
|
4
5
|
}
|
|
5
6
|
}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Version [2.1.2](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/2.1.2)
|
|
4
|
+
|
|
5
|
+
### Updates
|
|
6
|
+
|
|
7
|
+
- Dependency version bumps to stay up to date.
|
|
8
|
+
- Updates to emails and websites ref in gemspec
|
|
9
|
+
|
|
10
|
+
## Version [2.1.1](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/2.1.1)
|
|
11
|
+
|
|
12
|
+
### Updates
|
|
13
|
+
|
|
14
|
+
- Dependency version bumps to stay up to date.
|
|
15
|
+
|
|
3
16
|
## Version [2.1.0](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/2.1.0)
|
|
4
17
|
|
|
5
18
|
### Features
|
data/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/actions/workflows/tests.yml)
|
|
5
5
|
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/actions/workflows/builds.yml)
|
|
6
6
|
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/actions/workflows/lints.yml)
|
|
7
|
+
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/actions/workflows/github-code-scanning/codeql)
|
|
7
8
|
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases)
|
|
8
9
|
[](https://rubygems.org/gems/simplecov-tailwindcss)
|
|
9
10
|
[](https://discord.gg/pBxGpfrmD4)
|
|
@@ -12,63 +13,9 @@
|
|
|
12
13
|
|
|
13
14
|
Generates a HTML Tailwind Design report generated from Simplecov using ruby 2.5 or greater.
|
|
14
15
|
|
|
15
|
-
##
|
|
16
|
+
## Installation and Usage
|
|
16
17
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
### Ruby Gems Host
|
|
20
|
-
|
|
21
|
-
```ruby
|
|
22
|
-
# ./Gemfile
|
|
23
|
-
|
|
24
|
-
group :test do
|
|
25
|
-
gem 'simplecov', require: false
|
|
26
|
-
gem 'simplecov-tailwindcss', require: false
|
|
27
|
-
end
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
### Github Rubygems Host
|
|
31
|
-
|
|
32
|
-
```ruby
|
|
33
|
-
# ./Gemfile
|
|
34
|
-
|
|
35
|
-
group :test do
|
|
36
|
-
gem "simplecov", require: false
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
source "https://rubygems.pkg.github.com/chiefpansancolt"
|
|
40
|
-
group :test do
|
|
41
|
-
gem "simplecov-tailwindcss", require: false
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
## Usage
|
|
47
|
-
|
|
48
|
-
To use Simplecov Tailwind you will need to ensure your Formatter is set to use Simplecov Tailwind.
|
|
49
|
-
|
|
50
|
-
In your helper ensure your line about formatter usage is one of the following.
|
|
51
|
-
|
|
52
|
-
Ensure to add the require tag at the top of your helper class where Simplecov is configured
|
|
53
|
-
|
|
54
|
-
```ruby
|
|
55
|
-
require 'simplecov-tailwindcss'
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
**Single Formatter Usage:**
|
|
59
|
-
|
|
60
|
-
```ruby
|
|
61
|
-
SimpleCov.formatter = SimpleCov::Formatter::TailwindFormatter
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
**Multi Formatter Usage:**
|
|
65
|
-
|
|
66
|
-
```ruby
|
|
67
|
-
SimpleCov.formatters =
|
|
68
|
-
SimpleCov::Formatter::MultiFormatter.new(
|
|
69
|
-
[SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::TailwindFormatter],
|
|
70
|
-
)
|
|
71
|
-
```
|
|
18
|
+
Checkout the [Documentation](https://simplecov-tailwind.chiefpansancolt.dev) for full details.
|
|
72
19
|
|
|
73
20
|
## Change Log
|
|
74
21
|
|
data/dist/app.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Application } from '@hotwired/stimulus'
|
|
2
|
-
|
|
3
|
-
import NavigationController from './scripts/controllers/navigation_controller'
|
|
2
|
+
|
|
4
3
|
import DarkthemeController from './scripts/controllers/darktheme_controller'
|
|
4
|
+
import NavigationController from './scripts/controllers/navigation_controller'
|
|
5
|
+
import SearchController from './scripts/controllers/search_controller'
|
|
5
6
|
import SlideoverController from './scripts/controllers/slideover_controller'
|
|
6
|
-
|
|
7
7
|
import './scripts/timeago.js'
|
|
8
8
|
|
|
9
9
|
window.Stimulus = Application.start()
|
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplecov-tailwind",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "HTML tailwind Design View for Simplecov formatter",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm-run-all build:*",
|
|
@@ -14,8 +14,9 @@
|
|
|
14
14
|
"lint:erb": "bundle exec erblint --lint-all",
|
|
15
15
|
"lint:javascript": "eslint dist",
|
|
16
16
|
"gem:build": "gem build simplecov-tailwindcss.gemspec",
|
|
17
|
-
"format": "prettier './**/*.{css,js,json,yml,md}'
|
|
18
|
-
"format:
|
|
17
|
+
"format": "prettier './**/*.{css,js,json,yml,md,erb}' -l",
|
|
18
|
+
"format:check": "prettier './**/*.{css,js,json,yml,md,erb}' -c",
|
|
19
|
+
"format:fix": "prettier './**/*.{css,js,json,yml,md,erb}' -w",
|
|
19
20
|
"full": "yarn build & yarn gem:build & yarn test"
|
|
20
21
|
},
|
|
21
22
|
"repository": {
|
|
@@ -33,16 +34,16 @@
|
|
|
33
34
|
},
|
|
34
35
|
"author": {
|
|
35
36
|
"name": "Christopher Pezza",
|
|
36
|
-
"email": "github@chiefpansancolt.
|
|
37
|
+
"email": "github@chiefpansancolt.dev"
|
|
37
38
|
},
|
|
38
39
|
"contributors": [
|
|
39
40
|
{
|
|
40
41
|
"name": "Christopher Pezza",
|
|
41
|
-
"email": "github@chiefpansancolt.
|
|
42
|
-
"url": "https://chiefpansancolt.
|
|
42
|
+
"email": "github@chiefpansancolt.dev",
|
|
43
|
+
"url": "https://chiefpansancolt.dev"
|
|
43
44
|
}
|
|
44
45
|
],
|
|
45
|
-
"homepage": "https://chiefpansancolt.
|
|
46
|
+
"homepage": "https://simplecov-tailwind.chiefpansancolt.dev/",
|
|
46
47
|
"babel": {},
|
|
47
48
|
"devDependencies": {
|
|
48
49
|
"@babel/core": "^7.21.3",
|
|
@@ -51,12 +52,14 @@
|
|
|
51
52
|
"@prettier/plugin-ruby": "^3.2.2",
|
|
52
53
|
"@tailwindcss/forms": "^0.5.3",
|
|
53
54
|
"@tailwindcss/typography": "^0.5.9",
|
|
54
|
-
"
|
|
55
|
+
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
|
|
56
|
+
"esbuild": "^0.17.14",
|
|
55
57
|
"eslint": "^8.36.0",
|
|
56
|
-
"markdownlint": "^0.
|
|
58
|
+
"markdownlint": "^0.28.0",
|
|
57
59
|
"npm-run-all": "^4.1.5",
|
|
58
|
-
"prettier": "^2.8.
|
|
60
|
+
"prettier": "^2.8.7",
|
|
59
61
|
"prettier-plugin-erb": "^0.4.0",
|
|
62
|
+
"prettier-plugin-tailwindcss": "^0.2.5",
|
|
60
63
|
"tailwindcss": "^3.2.7",
|
|
61
64
|
"timeago.js": "^4.0.2"
|
|
62
65
|
}
|
data/prettier.config.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
plugins: [
|
|
3
|
+
require('prettier-plugin-erb'),
|
|
4
|
+
require('@trivago/prettier-plugin-sort-imports'),
|
|
5
|
+
require('prettier-plugin-tailwindcss'),
|
|
6
|
+
],
|
|
7
|
+
semi: false,
|
|
8
|
+
singleQuote: true,
|
|
9
|
+
printWidth: 100,
|
|
10
|
+
trailingComma: 'es5',
|
|
11
|
+
arrowParens: 'always',
|
|
12
|
+
tabWidth: 2,
|
|
13
|
+
useTabs: false,
|
|
14
|
+
quoteProps: 'as-needed',
|
|
15
|
+
jsxSingleQuote: false,
|
|
16
|
+
bracketSpacing: true,
|
|
17
|
+
importOrder: ['^@core/(.*)$', '^@server/(.*)$', '^@ui/(.*)$', '^[./]'],
|
|
18
|
+
importOrderSeparation: true,
|
|
19
|
+
importOrderSortSpecifiers: true,
|
|
20
|
+
}
|
|
@@ -8,12 +8,12 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.name = "simplecov-tailwindcss"
|
|
9
9
|
spec.version = SimpleCov::Formatter::TailwindFormatter::VERSION
|
|
10
10
|
spec.authors = ["Christopher Pezza"]
|
|
11
|
-
spec.email = ["chiefpansancolt
|
|
11
|
+
spec.email = ["github@chiefpansancolt.dev"]
|
|
12
12
|
spec.summary = "HTML Tailwind Design View for Simplecov formatter"
|
|
13
13
|
spec.description =
|
|
14
14
|
"HTML Tailwind Design View of Simplecov as a formatter" \
|
|
15
15
|
"that is clean, easy to read."
|
|
16
|
-
spec.homepage = "https://chiefpansancolt.
|
|
16
|
+
spec.homepage = "https://simplecov-tailwind.chiefpansancolt.dev/"
|
|
17
17
|
spec.license = "MIT"
|
|
18
18
|
|
|
19
19
|
spec.required_ruby_version = ">= 2.5.0"
|
data/yarn.lock
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@jridgewell/gen-mapping" "^0.1.0"
|
|
11
11
|
"@jridgewell/trace-mapping" "^0.3.9"
|
|
12
12
|
|
|
13
|
-
"@babel/code-frame@^7.18.6":
|
|
13
|
+
"@babel/code-frame@^7.16.7", "@babel/code-frame@^7.18.6":
|
|
14
14
|
version "7.18.6"
|
|
15
15
|
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
|
|
16
16
|
integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
|
|
@@ -52,7 +52,16 @@
|
|
|
52
52
|
eslint-visitor-keys "^2.1.0"
|
|
53
53
|
semver "^6.3.0"
|
|
54
54
|
|
|
55
|
-
"@babel/generator
|
|
55
|
+
"@babel/generator@7.17.7":
|
|
56
|
+
version "7.17.7"
|
|
57
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.7.tgz#8da2599beb4a86194a3b24df6c085931d9ee45ad"
|
|
58
|
+
integrity sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==
|
|
59
|
+
dependencies:
|
|
60
|
+
"@babel/types" "^7.17.0"
|
|
61
|
+
jsesc "^2.5.1"
|
|
62
|
+
source-map "^0.5.0"
|
|
63
|
+
|
|
64
|
+
"@babel/generator@^7.17.3", "@babel/generator@^7.21.3":
|
|
56
65
|
version "7.21.3"
|
|
57
66
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.3.tgz#232359d0874b392df04045d72ce2fd9bb5045fce"
|
|
58
67
|
integrity sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==
|
|
@@ -73,12 +82,12 @@
|
|
|
73
82
|
lru-cache "^5.1.1"
|
|
74
83
|
semver "^6.3.0"
|
|
75
84
|
|
|
76
|
-
"@babel/helper-environment-visitor@^7.18.9":
|
|
85
|
+
"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.9":
|
|
77
86
|
version "7.18.9"
|
|
78
87
|
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
|
|
79
88
|
integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
|
|
80
89
|
|
|
81
|
-
"@babel/helper-function-name@^7.21.0":
|
|
90
|
+
"@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.21.0":
|
|
82
91
|
version "7.21.0"
|
|
83
92
|
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4"
|
|
84
93
|
integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==
|
|
@@ -86,7 +95,7 @@
|
|
|
86
95
|
"@babel/template" "^7.20.7"
|
|
87
96
|
"@babel/types" "^7.21.0"
|
|
88
97
|
|
|
89
|
-
"@babel/helper-hoist-variables@^7.18.6":
|
|
98
|
+
"@babel/helper-hoist-variables@^7.16.7", "@babel/helper-hoist-variables@^7.18.6":
|
|
90
99
|
version "7.18.6"
|
|
91
100
|
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
|
|
92
101
|
integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
|
|
@@ -121,7 +130,7 @@
|
|
|
121
130
|
dependencies:
|
|
122
131
|
"@babel/types" "^7.20.2"
|
|
123
132
|
|
|
124
|
-
"@babel/helper-split-export-declaration@^7.18.6":
|
|
133
|
+
"@babel/helper-split-export-declaration@^7.16.7", "@babel/helper-split-export-declaration@^7.18.6":
|
|
125
134
|
version "7.18.6"
|
|
126
135
|
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
|
|
127
136
|
integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
|
|
@@ -133,7 +142,7 @@
|
|
|
133
142
|
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
|
|
134
143
|
integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
|
|
135
144
|
|
|
136
|
-
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
|
|
145
|
+
"@babel/helper-validator-identifier@^7.16.7", "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
|
|
137
146
|
version "7.19.1"
|
|
138
147
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
|
|
139
148
|
integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
|
|
@@ -161,7 +170,7 @@
|
|
|
161
170
|
chalk "^2.0.0"
|
|
162
171
|
js-tokens "^4.0.0"
|
|
163
172
|
|
|
164
|
-
"@babel/parser@^7.20.7", "@babel/parser@^7.21.3":
|
|
173
|
+
"@babel/parser@^7.17.3", "@babel/parser@^7.20.5", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3":
|
|
165
174
|
version "7.21.3"
|
|
166
175
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.3.tgz#1d285d67a19162ff9daa358d4cb41d50c06220b3"
|
|
167
176
|
integrity sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==
|
|
@@ -175,6 +184,22 @@
|
|
|
175
184
|
"@babel/parser" "^7.20.7"
|
|
176
185
|
"@babel/types" "^7.20.7"
|
|
177
186
|
|
|
187
|
+
"@babel/traverse@7.17.3":
|
|
188
|
+
version "7.17.3"
|
|
189
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.3.tgz#0ae0f15b27d9a92ba1f2263358ea7c4e7db47b57"
|
|
190
|
+
integrity sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==
|
|
191
|
+
dependencies:
|
|
192
|
+
"@babel/code-frame" "^7.16.7"
|
|
193
|
+
"@babel/generator" "^7.17.3"
|
|
194
|
+
"@babel/helper-environment-visitor" "^7.16.7"
|
|
195
|
+
"@babel/helper-function-name" "^7.16.7"
|
|
196
|
+
"@babel/helper-hoist-variables" "^7.16.7"
|
|
197
|
+
"@babel/helper-split-export-declaration" "^7.16.7"
|
|
198
|
+
"@babel/parser" "^7.17.3"
|
|
199
|
+
"@babel/types" "^7.17.0"
|
|
200
|
+
debug "^4.1.0"
|
|
201
|
+
globals "^11.1.0"
|
|
202
|
+
|
|
178
203
|
"@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.3":
|
|
179
204
|
version "7.21.3"
|
|
180
205
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.3.tgz#4747c5e7903d224be71f90788b06798331896f67"
|
|
@@ -191,7 +216,15 @@
|
|
|
191
216
|
debug "^4.1.0"
|
|
192
217
|
globals "^11.1.0"
|
|
193
218
|
|
|
194
|
-
"@babel/types
|
|
219
|
+
"@babel/types@7.17.0":
|
|
220
|
+
version "7.17.0"
|
|
221
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b"
|
|
222
|
+
integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==
|
|
223
|
+
dependencies:
|
|
224
|
+
"@babel/helper-validator-identifier" "^7.16.7"
|
|
225
|
+
to-fast-properties "^2.0.0"
|
|
226
|
+
|
|
227
|
+
"@babel/types@^7.17.0", "@babel/types@^7.18.6", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.3":
|
|
195
228
|
version "7.21.3"
|
|
196
229
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.3.tgz#4865a5357ce40f64e3400b0f3b737dc6d4f64d05"
|
|
197
230
|
integrity sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==
|
|
@@ -200,127 +233,127 @@
|
|
|
200
233
|
"@babel/helper-validator-identifier" "^7.19.1"
|
|
201
234
|
to-fast-properties "^2.0.0"
|
|
202
235
|
|
|
203
|
-
"@esbuild/android-arm64@0.17.
|
|
204
|
-
version "0.17.
|
|
205
|
-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.
|
|
206
|
-
integrity sha512-
|
|
207
|
-
|
|
208
|
-
"@esbuild/android-arm@0.17.
|
|
209
|
-
version "0.17.
|
|
210
|
-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.
|
|
211
|
-
integrity sha512-
|
|
212
|
-
|
|
213
|
-
"@esbuild/android-x64@0.17.
|
|
214
|
-
version "0.17.
|
|
215
|
-
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.
|
|
216
|
-
integrity sha512-
|
|
217
|
-
|
|
218
|
-
"@esbuild/darwin-arm64@0.17.
|
|
219
|
-
version "0.17.
|
|
220
|
-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.
|
|
221
|
-
integrity sha512-
|
|
222
|
-
|
|
223
|
-
"@esbuild/darwin-x64@0.17.
|
|
224
|
-
version "0.17.
|
|
225
|
-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.
|
|
226
|
-
integrity sha512-
|
|
227
|
-
|
|
228
|
-
"@esbuild/freebsd-arm64@0.17.
|
|
229
|
-
version "0.17.
|
|
230
|
-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.
|
|
231
|
-
integrity sha512-
|
|
232
|
-
|
|
233
|
-
"@esbuild/freebsd-x64@0.17.
|
|
234
|
-
version "0.17.
|
|
235
|
-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.
|
|
236
|
-
integrity sha512-
|
|
237
|
-
|
|
238
|
-
"@esbuild/linux-arm64@0.17.
|
|
239
|
-
version "0.17.
|
|
240
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.
|
|
241
|
-
integrity sha512-
|
|
242
|
-
|
|
243
|
-
"@esbuild/linux-arm@0.17.
|
|
244
|
-
version "0.17.
|
|
245
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.
|
|
246
|
-
integrity sha512-
|
|
247
|
-
|
|
248
|
-
"@esbuild/linux-ia32@0.17.
|
|
249
|
-
version "0.17.
|
|
250
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.
|
|
251
|
-
integrity sha512-
|
|
252
|
-
|
|
253
|
-
"@esbuild/linux-loong64@0.17.
|
|
254
|
-
version "0.17.
|
|
255
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.
|
|
256
|
-
integrity sha512-
|
|
257
|
-
|
|
258
|
-
"@esbuild/linux-mips64el@0.17.
|
|
259
|
-
version "0.17.
|
|
260
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.
|
|
261
|
-
integrity sha512-
|
|
262
|
-
|
|
263
|
-
"@esbuild/linux-ppc64@0.17.
|
|
264
|
-
version "0.17.
|
|
265
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.
|
|
266
|
-
integrity sha512-
|
|
267
|
-
|
|
268
|
-
"@esbuild/linux-riscv64@0.17.
|
|
269
|
-
version "0.17.
|
|
270
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.
|
|
271
|
-
integrity sha512-
|
|
272
|
-
|
|
273
|
-
"@esbuild/linux-s390x@0.17.
|
|
274
|
-
version "0.17.
|
|
275
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.
|
|
276
|
-
integrity sha512-
|
|
277
|
-
|
|
278
|
-
"@esbuild/linux-x64@0.17.
|
|
279
|
-
version "0.17.
|
|
280
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.
|
|
281
|
-
integrity sha512-
|
|
282
|
-
|
|
283
|
-
"@esbuild/netbsd-x64@0.17.
|
|
284
|
-
version "0.17.
|
|
285
|
-
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.
|
|
286
|
-
integrity sha512-
|
|
287
|
-
|
|
288
|
-
"@esbuild/openbsd-x64@0.17.
|
|
289
|
-
version "0.17.
|
|
290
|
-
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.
|
|
291
|
-
integrity sha512-
|
|
292
|
-
|
|
293
|
-
"@esbuild/sunos-x64@0.17.
|
|
294
|
-
version "0.17.
|
|
295
|
-
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.
|
|
296
|
-
integrity sha512-
|
|
297
|
-
|
|
298
|
-
"@esbuild/win32-arm64@0.17.
|
|
299
|
-
version "0.17.
|
|
300
|
-
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.
|
|
301
|
-
integrity sha512-
|
|
302
|
-
|
|
303
|
-
"@esbuild/win32-ia32@0.17.
|
|
304
|
-
version "0.17.
|
|
305
|
-
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.
|
|
306
|
-
integrity sha512-
|
|
307
|
-
|
|
308
|
-
"@esbuild/win32-x64@0.17.
|
|
309
|
-
version "0.17.
|
|
310
|
-
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.
|
|
311
|
-
integrity sha512-
|
|
236
|
+
"@esbuild/android-arm64@0.17.14":
|
|
237
|
+
version "0.17.14"
|
|
238
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.14.tgz#4624cea3c8941c91f9e9c1228f550d23f1cef037"
|
|
239
|
+
integrity sha512-eLOpPO1RvtsP71afiFTvS7tVFShJBCT0txiv/xjFBo5a7R7Gjw7X0IgIaFoLKhqXYAXhahoXm7qAmRXhY4guJg==
|
|
240
|
+
|
|
241
|
+
"@esbuild/android-arm@0.17.14":
|
|
242
|
+
version "0.17.14"
|
|
243
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.14.tgz#74fae60fcab34c3f0e15cb56473a6091ba2b53a6"
|
|
244
|
+
integrity sha512-0CnlwnjDU8cks0yJLXfkaU/uoLyRf9VZJs4p1PskBr2AlAHeEsFEwJEo0of/Z3g+ilw5mpyDwThlxzNEIxOE4g==
|
|
245
|
+
|
|
246
|
+
"@esbuild/android-x64@0.17.14":
|
|
247
|
+
version "0.17.14"
|
|
248
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.14.tgz#f002fbc08d5e939d8314bd23bcfb1e95d029491f"
|
|
249
|
+
integrity sha512-nrfQYWBfLGfSGLvRVlt6xi63B5IbfHm3tZCdu/82zuFPQ7zez4XjmRtF/wIRYbJQ/DsZrxJdEvYFE67avYXyng==
|
|
250
|
+
|
|
251
|
+
"@esbuild/darwin-arm64@0.17.14":
|
|
252
|
+
version "0.17.14"
|
|
253
|
+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.14.tgz#b8dcd79a1dd19564950b4ca51d62999011e2e168"
|
|
254
|
+
integrity sha512-eoSjEuDsU1ROwgBH/c+fZzuSyJUVXQTOIN9xuLs9dE/9HbV/A5IqdXHU1p2OfIMwBwOYJ9SFVGGldxeRCUJFyw==
|
|
255
|
+
|
|
256
|
+
"@esbuild/darwin-x64@0.17.14":
|
|
257
|
+
version "0.17.14"
|
|
258
|
+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.14.tgz#4b49f195d9473625efc3c773fc757018f2c0d979"
|
|
259
|
+
integrity sha512-zN0U8RWfrDttdFNkHqFYZtOH8hdi22z0pFm0aIJPsNC4QQZv7je8DWCX5iA4Zx6tRhS0CCc0XC2m7wKsbWEo5g==
|
|
260
|
+
|
|
261
|
+
"@esbuild/freebsd-arm64@0.17.14":
|
|
262
|
+
version "0.17.14"
|
|
263
|
+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.14.tgz#480923fd38f644c6342c55e916cc7c231a85eeb7"
|
|
264
|
+
integrity sha512-z0VcD4ibeZWVQCW1O7szaLxGsx54gcCnajEJMdYoYjLiq4g1jrP2lMq6pk71dbS5+7op/L2Aod+erw+EUr28/A==
|
|
265
|
+
|
|
266
|
+
"@esbuild/freebsd-x64@0.17.14":
|
|
267
|
+
version "0.17.14"
|
|
268
|
+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.14.tgz#a6b6b01954ad8562461cb8a5e40e8a860af69cbe"
|
|
269
|
+
integrity sha512-hd9mPcxfTgJlolrPlcXkQk9BMwNBvNBsVaUe5eNUqXut6weDQH8whcNaKNF2RO8NbpT6GY8rHOK2A9y++s+ehw==
|
|
270
|
+
|
|
271
|
+
"@esbuild/linux-arm64@0.17.14":
|
|
272
|
+
version "0.17.14"
|
|
273
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.14.tgz#1fe2f39f78183b59f75a4ad9c48d079916d92418"
|
|
274
|
+
integrity sha512-FhAMNYOq3Iblcj9i+K0l1Fp/MHt+zBeRu/Qkf0LtrcFu3T45jcwB6A1iMsemQ42vR3GBhjNZJZTaCe3VFPbn9g==
|
|
275
|
+
|
|
276
|
+
"@esbuild/linux-arm@0.17.14":
|
|
277
|
+
version "0.17.14"
|
|
278
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.14.tgz#18d594a49b64e4a3a05022c005cb384a58056a2a"
|
|
279
|
+
integrity sha512-BNTl+wSJ1omsH8s3TkQmIIIQHwvwJrU9u1ggb9XU2KTVM4TmthRIVyxSp2qxROJHhZuW/r8fht46/QE8hU8Qvg==
|
|
280
|
+
|
|
281
|
+
"@esbuild/linux-ia32@0.17.14":
|
|
282
|
+
version "0.17.14"
|
|
283
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.14.tgz#f7f0182a9cfc0159e0922ed66c805c9c6ef1b654"
|
|
284
|
+
integrity sha512-91OK/lQ5y2v7AsmnFT+0EyxdPTNhov3y2CWMdizyMfxSxRqHazXdzgBKtlmkU2KYIc+9ZK3Vwp2KyXogEATYxQ==
|
|
285
|
+
|
|
286
|
+
"@esbuild/linux-loong64@0.17.14":
|
|
287
|
+
version "0.17.14"
|
|
288
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.14.tgz#5f5305fdffe2d71dd9a97aa77d0c99c99409066f"
|
|
289
|
+
integrity sha512-vp15H+5NR6hubNgMluqqKza85HcGJgq7t6rMH7O3Y6ApiOWPkvW2AJfNojUQimfTp6OUrACUXfR4hmpcENXoMQ==
|
|
290
|
+
|
|
291
|
+
"@esbuild/linux-mips64el@0.17.14":
|
|
292
|
+
version "0.17.14"
|
|
293
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.14.tgz#a602e85c51b2f71d2aedfe7f4143b2f92f97f3f5"
|
|
294
|
+
integrity sha512-90TOdFV7N+fgi6c2+GO9ochEkmm9kBAKnuD5e08GQMgMINOdOFHuYLPQ91RYVrnWwQ5683sJKuLi9l4SsbJ7Hg==
|
|
295
|
+
|
|
296
|
+
"@esbuild/linux-ppc64@0.17.14":
|
|
297
|
+
version "0.17.14"
|
|
298
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.14.tgz#32d918d782105cbd9345dbfba14ee018b9c7afdf"
|
|
299
|
+
integrity sha512-NnBGeoqKkTugpBOBZZoktQQ1Yqb7aHKmHxsw43NddPB2YWLAlpb7THZIzsRsTr0Xw3nqiPxbA1H31ZMOG+VVPQ==
|
|
300
|
+
|
|
301
|
+
"@esbuild/linux-riscv64@0.17.14":
|
|
302
|
+
version "0.17.14"
|
|
303
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.14.tgz#38612e7b6c037dff7022c33f49ca17f85c5dec58"
|
|
304
|
+
integrity sha512-0qdlKScLXA8MGVy21JUKvMzCYWovctuP8KKqhtE5A6IVPq4onxXhSuhwDd2g5sRCzNDlDjitc5sX31BzDoL5Fw==
|
|
305
|
+
|
|
306
|
+
"@esbuild/linux-s390x@0.17.14":
|
|
307
|
+
version "0.17.14"
|
|
308
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.14.tgz#4397dff354f899e72fd035d72af59a700c465ccb"
|
|
309
|
+
integrity sha512-Hdm2Jo1yaaOro4v3+6/zJk6ygCqIZuSDJHdHaf8nVH/tfOuoEX5Riv03Ka15LmQBYJObUTNS1UdyoMk0WUn9Ww==
|
|
310
|
+
|
|
311
|
+
"@esbuild/linux-x64@0.17.14":
|
|
312
|
+
version "0.17.14"
|
|
313
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.14.tgz#6c5cb99891b6c3e0c08369da3ef465e8038ad9c2"
|
|
314
|
+
integrity sha512-8KHF17OstlK4DuzeF/KmSgzrTWQrkWj5boluiiq7kvJCiQVzUrmSkaBvcLB2UgHpKENO2i6BthPkmUhNDaJsVw==
|
|
315
|
+
|
|
316
|
+
"@esbuild/netbsd-x64@0.17.14":
|
|
317
|
+
version "0.17.14"
|
|
318
|
+
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.14.tgz#5fa5255a64e9bf3947c1b3bef5e458b50b211994"
|
|
319
|
+
integrity sha512-nVwpqvb3yyXztxIT2+VsxJhB5GCgzPdk1n0HHSnchRAcxqKO6ghXwHhJnr0j/B+5FSyEqSxF4q03rbA2fKXtUQ==
|
|
320
|
+
|
|
321
|
+
"@esbuild/openbsd-x64@0.17.14":
|
|
322
|
+
version "0.17.14"
|
|
323
|
+
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.14.tgz#74d14c79dcb6faf446878cc64284aa4e02f5ca6f"
|
|
324
|
+
integrity sha512-1RZ7uQQ9zcy/GSAJL1xPdN7NDdOOtNEGiJalg/MOzeakZeTrgH/DoCkbq7TaPDiPhWqnDF+4bnydxRqQD7il6g==
|
|
325
|
+
|
|
326
|
+
"@esbuild/sunos-x64@0.17.14":
|
|
327
|
+
version "0.17.14"
|
|
328
|
+
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.14.tgz#5c7d1c7203781d86c2a9b2ff77bd2f8036d24cfa"
|
|
329
|
+
integrity sha512-nqMjDsFwv7vp7msrwWRysnM38Sd44PKmW8EzV01YzDBTcTWUpczQg6mGao9VLicXSgW/iookNK6AxeogNVNDZA==
|
|
330
|
+
|
|
331
|
+
"@esbuild/win32-arm64@0.17.14":
|
|
332
|
+
version "0.17.14"
|
|
333
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.14.tgz#dc36ed84f1390e73b6019ccf0566c80045e5ca3d"
|
|
334
|
+
integrity sha512-xrD0mccTKRBBIotrITV7WVQAwNJ5+1va6L0H9zN92v2yEdjfAN7864cUaZwJS7JPEs53bDTzKFbfqVlG2HhyKQ==
|
|
335
|
+
|
|
336
|
+
"@esbuild/win32-ia32@0.17.14":
|
|
337
|
+
version "0.17.14"
|
|
338
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.14.tgz#0802a107afa9193c13e35de15a94fe347c588767"
|
|
339
|
+
integrity sha512-nXpkz9bbJrLLyUTYtRotSS3t5b+FOuljg8LgLdINWFs3FfqZMtbnBCZFUmBzQPyxqU87F8Av+3Nco/M3hEcu1w==
|
|
340
|
+
|
|
341
|
+
"@esbuild/win32-x64@0.17.14":
|
|
342
|
+
version "0.17.14"
|
|
343
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.14.tgz#e81fb49de05fed91bf74251c9ca0343f4fc77d31"
|
|
344
|
+
integrity sha512-gPQmsi2DKTaEgG14hc3CHXHp62k8g6qr0Pas+I4lUxRMugGSATh/Bi8Dgusoz9IQ0IfdrvLpco6kujEIBoaogA==
|
|
312
345
|
|
|
313
346
|
"@eslint-community/eslint-utils@^4.2.0":
|
|
314
|
-
version "4.
|
|
315
|
-
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.
|
|
316
|
-
integrity sha512-
|
|
347
|
+
version "4.4.0"
|
|
348
|
+
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
|
|
349
|
+
integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
|
|
317
350
|
dependencies:
|
|
318
351
|
eslint-visitor-keys "^3.3.0"
|
|
319
352
|
|
|
320
353
|
"@eslint-community/regexpp@^4.4.0":
|
|
321
|
-
version "4.4.
|
|
322
|
-
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.
|
|
323
|
-
integrity sha512-
|
|
354
|
+
version "4.4.1"
|
|
355
|
+
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.1.tgz#087cb8d9d757bb22e9c9946c9c0c2bf8806830f1"
|
|
356
|
+
integrity sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw==
|
|
324
357
|
|
|
325
358
|
"@eslint/eslintrc@^2.0.1":
|
|
326
359
|
version "2.0.1"
|
|
@@ -458,6 +491,18 @@
|
|
|
458
491
|
lodash.merge "^4.6.2"
|
|
459
492
|
postcss-selector-parser "6.0.10"
|
|
460
493
|
|
|
494
|
+
"@trivago/prettier-plugin-sort-imports@^4.1.1":
|
|
495
|
+
version "4.1.1"
|
|
496
|
+
resolved "https://registry.yarnpkg.com/@trivago/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.1.1.tgz#71c3c1ae770c3738b6fc85710714844477574ffd"
|
|
497
|
+
integrity sha512-dQ2r2uzNr1x6pJsuh/8x0IRA3CBUB+pWEW3J/7N98axqt7SQSm+2fy0FLNXvXGg77xEDC7KHxJlHfLYyi7PDcw==
|
|
498
|
+
dependencies:
|
|
499
|
+
"@babel/generator" "7.17.7"
|
|
500
|
+
"@babel/parser" "^7.20.5"
|
|
501
|
+
"@babel/traverse" "7.17.3"
|
|
502
|
+
"@babel/types" "7.17.0"
|
|
503
|
+
javascript-natural-sort "0.7.1"
|
|
504
|
+
lodash "^4.17.21"
|
|
505
|
+
|
|
461
506
|
acorn-jsx@^5.3.2:
|
|
462
507
|
version "5.3.2"
|
|
463
508
|
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
|
|
@@ -601,9 +646,9 @@ camelcase-css@^2.0.1:
|
|
|
601
646
|
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
|
602
647
|
|
|
603
648
|
caniuse-lite@^1.0.30001449:
|
|
604
|
-
version "1.0.
|
|
605
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
|
606
|
-
integrity sha512-
|
|
649
|
+
version "1.0.30001470"
|
|
650
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001470.tgz#09c8e87c711f75ff5d39804db2613dd593feeb10"
|
|
651
|
+
integrity sha512-065uNwY6QtHCBOExzbV6m236DDhYCCtPmQUCoQtwkVqzud8v5QPidoMr6CoMkC2nfp6nksjttqWQRRh75LqUmA==
|
|
607
652
|
|
|
608
653
|
chalk@^2.0.0, chalk@^2.4.1:
|
|
609
654
|
version "2.4.2"
|
|
@@ -748,9 +793,9 @@ doctrine@^3.0.0:
|
|
|
748
793
|
esutils "^2.0.2"
|
|
749
794
|
|
|
750
795
|
electron-to-chromium@^1.4.284:
|
|
751
|
-
version "1.4.
|
|
752
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
753
|
-
integrity sha512-
|
|
796
|
+
version "1.4.341"
|
|
797
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.341.tgz#ab31e9e57ef7758a14c7a7977a1978d599514470"
|
|
798
|
+
integrity sha512-R4A8VfUBQY9WmAhuqY5tjHRf5fH2AAf6vqitBOE0y6u2PgHgqHSrhZmu78dIX3fVZtjqlwJNX1i2zwC3VpHtQQ==
|
|
754
799
|
|
|
755
800
|
entities@~3.0.1:
|
|
756
801
|
version "3.0.1"
|
|
@@ -822,33 +867,33 @@ es-to-primitive@^1.2.1:
|
|
|
822
867
|
is-date-object "^1.0.1"
|
|
823
868
|
is-symbol "^1.0.2"
|
|
824
869
|
|
|
825
|
-
esbuild@^0.17.
|
|
826
|
-
version "0.17.
|
|
827
|
-
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.
|
|
828
|
-
integrity sha512-
|
|
870
|
+
esbuild@^0.17.14:
|
|
871
|
+
version "0.17.14"
|
|
872
|
+
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.14.tgz#d61a22de751a3133f3c6c7f9c1c3e231e91a3245"
|
|
873
|
+
integrity sha512-vOO5XhmVj/1XQR9NQ1UPq6qvMYL7QFJU57J5fKBKBKxp17uDt5PgxFDb4A2nEiXhr1qQs4x0F5+66hVVw4ruNw==
|
|
829
874
|
optionalDependencies:
|
|
830
|
-
"@esbuild/android-arm" "0.17.
|
|
831
|
-
"@esbuild/android-arm64" "0.17.
|
|
832
|
-
"@esbuild/android-x64" "0.17.
|
|
833
|
-
"@esbuild/darwin-arm64" "0.17.
|
|
834
|
-
"@esbuild/darwin-x64" "0.17.
|
|
835
|
-
"@esbuild/freebsd-arm64" "0.17.
|
|
836
|
-
"@esbuild/freebsd-x64" "0.17.
|
|
837
|
-
"@esbuild/linux-arm" "0.17.
|
|
838
|
-
"@esbuild/linux-arm64" "0.17.
|
|
839
|
-
"@esbuild/linux-ia32" "0.17.
|
|
840
|
-
"@esbuild/linux-loong64" "0.17.
|
|
841
|
-
"@esbuild/linux-mips64el" "0.17.
|
|
842
|
-
"@esbuild/linux-ppc64" "0.17.
|
|
843
|
-
"@esbuild/linux-riscv64" "0.17.
|
|
844
|
-
"@esbuild/linux-s390x" "0.17.
|
|
845
|
-
"@esbuild/linux-x64" "0.17.
|
|
846
|
-
"@esbuild/netbsd-x64" "0.17.
|
|
847
|
-
"@esbuild/openbsd-x64" "0.17.
|
|
848
|
-
"@esbuild/sunos-x64" "0.17.
|
|
849
|
-
"@esbuild/win32-arm64" "0.17.
|
|
850
|
-
"@esbuild/win32-ia32" "0.17.
|
|
851
|
-
"@esbuild/win32-x64" "0.17.
|
|
875
|
+
"@esbuild/android-arm" "0.17.14"
|
|
876
|
+
"@esbuild/android-arm64" "0.17.14"
|
|
877
|
+
"@esbuild/android-x64" "0.17.14"
|
|
878
|
+
"@esbuild/darwin-arm64" "0.17.14"
|
|
879
|
+
"@esbuild/darwin-x64" "0.17.14"
|
|
880
|
+
"@esbuild/freebsd-arm64" "0.17.14"
|
|
881
|
+
"@esbuild/freebsd-x64" "0.17.14"
|
|
882
|
+
"@esbuild/linux-arm" "0.17.14"
|
|
883
|
+
"@esbuild/linux-arm64" "0.17.14"
|
|
884
|
+
"@esbuild/linux-ia32" "0.17.14"
|
|
885
|
+
"@esbuild/linux-loong64" "0.17.14"
|
|
886
|
+
"@esbuild/linux-mips64el" "0.17.14"
|
|
887
|
+
"@esbuild/linux-ppc64" "0.17.14"
|
|
888
|
+
"@esbuild/linux-riscv64" "0.17.14"
|
|
889
|
+
"@esbuild/linux-s390x" "0.17.14"
|
|
890
|
+
"@esbuild/linux-x64" "0.17.14"
|
|
891
|
+
"@esbuild/netbsd-x64" "0.17.14"
|
|
892
|
+
"@esbuild/openbsd-x64" "0.17.14"
|
|
893
|
+
"@esbuild/sunos-x64" "0.17.14"
|
|
894
|
+
"@esbuild/win32-arm64" "0.17.14"
|
|
895
|
+
"@esbuild/win32-ia32" "0.17.14"
|
|
896
|
+
"@esbuild/win32-x64" "0.17.14"
|
|
852
897
|
|
|
853
898
|
escalade@^3.1.1:
|
|
854
899
|
version "3.1.1"
|
|
@@ -887,9 +932,9 @@ eslint-visitor-keys@^2.1.0:
|
|
|
887
932
|
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
|
|
888
933
|
|
|
889
934
|
eslint-visitor-keys@^3.3.0:
|
|
890
|
-
version "3.
|
|
891
|
-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.
|
|
892
|
-
integrity sha512-
|
|
935
|
+
version "3.4.0"
|
|
936
|
+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc"
|
|
937
|
+
integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==
|
|
893
938
|
|
|
894
939
|
eslint@^8.36.0:
|
|
895
940
|
version "8.36.0"
|
|
@@ -1396,10 +1441,15 @@ isexe@^2.0.0:
|
|
|
1396
1441
|
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
|
1397
1442
|
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
|
|
1398
1443
|
|
|
1444
|
+
javascript-natural-sort@0.7.1:
|
|
1445
|
+
version "0.7.1"
|
|
1446
|
+
resolved "https://registry.yarnpkg.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz#f9e2303d4507f6d74355a73664d1440fb5a0ef59"
|
|
1447
|
+
integrity sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==
|
|
1448
|
+
|
|
1399
1449
|
js-sdsl@^4.1.4:
|
|
1400
|
-
version "4.
|
|
1401
|
-
resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.
|
|
1402
|
-
integrity sha512-
|
|
1450
|
+
version "4.4.0"
|
|
1451
|
+
resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430"
|
|
1452
|
+
integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==
|
|
1403
1453
|
|
|
1404
1454
|
js-tokens@^4.0.0:
|
|
1405
1455
|
version "4.0.0"
|
|
@@ -1490,6 +1540,11 @@ lodash.merge@^4.6.2:
|
|
|
1490
1540
|
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
|
|
1491
1541
|
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
|
|
1492
1542
|
|
|
1543
|
+
lodash@^4.17.21:
|
|
1544
|
+
version "4.17.21"
|
|
1545
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
|
1546
|
+
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
|
1547
|
+
|
|
1493
1548
|
lru-cache@^5.1.1:
|
|
1494
1549
|
version "5.1.1"
|
|
1495
1550
|
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
|
|
@@ -1508,12 +1563,18 @@ markdown-it@13.0.1:
|
|
|
1508
1563
|
mdurl "^1.0.1"
|
|
1509
1564
|
uc.micro "^1.0.5"
|
|
1510
1565
|
|
|
1511
|
-
markdownlint
|
|
1512
|
-
version "0.
|
|
1513
|
-
resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.
|
|
1514
|
-
integrity sha512-
|
|
1566
|
+
markdownlint-micromark@0.1.2:
|
|
1567
|
+
version "0.1.2"
|
|
1568
|
+
resolved "https://registry.yarnpkg.com/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz#5520e04febffa46741875a2f297509ffdb561f5c"
|
|
1569
|
+
integrity sha512-jRxlQg8KpOfM2IbCL9RXM8ZiYWz2rv6DlZAnGv8ASJQpUh6byTBnEsbuMZ6T2/uIgntyf7SKg/mEaEBo1164fQ==
|
|
1570
|
+
|
|
1571
|
+
markdownlint@^0.28.0:
|
|
1572
|
+
version "0.28.0"
|
|
1573
|
+
resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.28.0.tgz#23234130bfb88c9ed0eaa65fcc3bebad80dd8d84"
|
|
1574
|
+
integrity sha512-7Gt/SzjE5420Dr93wZgTLlgfcWj5vxAWJtvN7bBfN35ytQwsVDEW46L+NswzeCVhZSFdWRgLdEwQo3lMavUjvQ==
|
|
1515
1575
|
dependencies:
|
|
1516
1576
|
markdown-it "13.0.1"
|
|
1577
|
+
markdownlint-micromark "0.1.2"
|
|
1517
1578
|
|
|
1518
1579
|
mdurl@^1.0.1:
|
|
1519
1580
|
version "1.0.1"
|
|
@@ -1561,9 +1622,9 @@ ms@2.1.2:
|
|
|
1561
1622
|
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
|
1562
1623
|
|
|
1563
1624
|
nanoid@^3.3.4:
|
|
1564
|
-
version "3.3.
|
|
1565
|
-
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.
|
|
1566
|
-
integrity sha512-
|
|
1625
|
+
version "3.3.6"
|
|
1626
|
+
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
|
|
1627
|
+
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
|
|
1567
1628
|
|
|
1568
1629
|
natural-compare@^1.4.0:
|
|
1569
1630
|
version "1.4.0"
|
|
@@ -1818,10 +1879,15 @@ prettier-plugin-erb@^0.4.0:
|
|
|
1818
1879
|
dependencies:
|
|
1819
1880
|
prettier-html-templates "^0.1.0"
|
|
1820
1881
|
|
|
1821
|
-
prettier
|
|
1822
|
-
version "2.
|
|
1823
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.
|
|
1824
|
-
integrity sha512-
|
|
1882
|
+
prettier-plugin-tailwindcss@^0.2.5:
|
|
1883
|
+
version "0.2.5"
|
|
1884
|
+
resolved "https://registry.yarnpkg.com/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.2.5.tgz#fb9f07f22d0658fdedbf4d83254bf907656f7500"
|
|
1885
|
+
integrity sha512-vZ/iKieyCx0WTxHbkf5E1rBlv/ybFk8WTT4hL5W2jlVxum2Zbe0jMUpuQdDrpa4z2vnPiJ5KIWCqL/kd16fKYg==
|
|
1886
|
+
|
|
1887
|
+
prettier@>=2.3.0, prettier@^2.8.7:
|
|
1888
|
+
version "2.8.7"
|
|
1889
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450"
|
|
1890
|
+
integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==
|
|
1825
1891
|
|
|
1826
1892
|
punycode@^2.1.0:
|
|
1827
1893
|
version "2.3.0"
|
|
@@ -1965,6 +2031,11 @@ source-map-js@^1.0.2:
|
|
|
1965
2031
|
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
|
|
1966
2032
|
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
|
1967
2033
|
|
|
2034
|
+
source-map@^0.5.0:
|
|
2035
|
+
version "0.5.7"
|
|
2036
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
|
2037
|
+
integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
|
|
2038
|
+
|
|
1968
2039
|
spdx-correct@^3.0.0:
|
|
1969
2040
|
version "3.2.0"
|
|
1970
2041
|
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simplecov-tailwindcss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Pezza
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: simplecov
|
|
@@ -27,7 +27,7 @@ dependencies:
|
|
|
27
27
|
description: HTML Tailwind Design View of Simplecov as a formatterthat is clean, easy
|
|
28
28
|
to read.
|
|
29
29
|
email:
|
|
30
|
-
- chiefpansancolt
|
|
30
|
+
- github@chiefpansancolt.dev
|
|
31
31
|
executables:
|
|
32
32
|
- console
|
|
33
33
|
- setup
|
|
@@ -45,6 +45,7 @@ files:
|
|
|
45
45
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
46
46
|
- ".github/ISSUE_TEMPLATE/feature_request.yml"
|
|
47
47
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
48
|
+
- ".github/dependabot.yml"
|
|
48
49
|
- ".github/workflows/builds.yml"
|
|
49
50
|
- ".github/workflows/github_publish.yml"
|
|
50
51
|
- ".github/workflows/lints.yml"
|
|
@@ -53,7 +54,6 @@ files:
|
|
|
53
54
|
- ".gitignore"
|
|
54
55
|
- ".markdownlint.yml"
|
|
55
56
|
- ".prettierignore"
|
|
56
|
-
- ".prettierrc.json"
|
|
57
57
|
- ".rubocop.yml"
|
|
58
58
|
- ".ruby-version"
|
|
59
59
|
- ".vscode/settings.json"
|
|
@@ -74,6 +74,7 @@ files:
|
|
|
74
74
|
- lib/simplecov-tailwindcss.rb
|
|
75
75
|
- lib/simplecov-tailwindcss/version.rb
|
|
76
76
|
- package.json
|
|
77
|
+
- prettier.config.js
|
|
77
78
|
- public/application.css
|
|
78
79
|
- public/application.js
|
|
79
80
|
- simplecov-tailwindcss.gemspec
|
|
@@ -89,11 +90,11 @@ files:
|
|
|
89
90
|
- views/main.erb
|
|
90
91
|
- views/stat_card.erb
|
|
91
92
|
- yarn.lock
|
|
92
|
-
homepage: https://chiefpansancolt.
|
|
93
|
+
homepage: https://simplecov-tailwind.chiefpansancolt.dev/
|
|
93
94
|
licenses:
|
|
94
95
|
- MIT
|
|
95
96
|
metadata:
|
|
96
|
-
homepage_uri: https://chiefpansancolt.
|
|
97
|
+
homepage_uri: https://simplecov-tailwind.chiefpansancolt.dev/
|
|
97
98
|
source_code_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss
|
|
98
99
|
changelog_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/master/CHANGELOG.md
|
|
99
100
|
bug_tracker_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues
|
data/.prettierrc.json
DELETED