vite_rb 0.0.1.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +3 -0
  3. data/.dockerignore +22 -0
  4. data/.github/FUNDING.yml +1 -0
  5. data/.github/workflows/build.yml +17 -0
  6. data/.gitignore +71 -0
  7. data/.ruby-version +1 -0
  8. data/.solargraph.yml +16 -0
  9. data/.standard.yml +11 -0
  10. data/CHANGELOG.md +65 -0
  11. data/Gemfile +8 -0
  12. data/LICENSE.txt +21 -0
  13. data/README.md +258 -0
  14. data/Rakefile +39 -0
  15. data/bin/console +15 -0
  16. data/bin/setup +8 -0
  17. data/examples/rails-without-webpack/.gitignore +34 -0
  18. data/examples/rails-without-webpack/.ruby-version +1 -0
  19. data/examples/rails-without-webpack/Gemfile +33 -0
  20. data/examples/rails-without-webpack/README.md +24 -0
  21. data/examples/rails-without-webpack/Rakefile +6 -0
  22. data/examples/rails-without-webpack/app/assets/config/manifest.js +2 -0
  23. data/examples/rails-without-webpack/app/assets/images/.keep +0 -0
  24. data/examples/rails-without-webpack/app/assets/stylesheets/application.css +15 -0
  25. data/examples/rails-without-webpack/app/assets/stylesheets/static_pages.scss +3 -0
  26. data/examples/rails-without-webpack/app/channels/application_cable/channel.rb +4 -0
  27. data/examples/rails-without-webpack/app/channels/application_cable/connection.rb +4 -0
  28. data/examples/rails-without-webpack/app/channels/chat_channel.rb +12 -0
  29. data/examples/rails-without-webpack/app/controllers/application_controller.rb +2 -0
  30. data/examples/rails-without-webpack/app/controllers/concerns/.keep +0 -0
  31. data/examples/rails-without-webpack/app/controllers/static_pages_controller.rb +4 -0
  32. data/examples/rails-without-webpack/app/helpers/application_helper.rb +2 -0
  33. data/examples/rails-without-webpack/app/helpers/static_pages_helper.rb +2 -0
  34. data/examples/rails-without-webpack/app/jobs/application_job.rb +7 -0
  35. data/examples/rails-without-webpack/app/mailers/application_mailer.rb +4 -0
  36. data/examples/rails-without-webpack/app/models/application_record.rb +3 -0
  37. data/examples/rails-without-webpack/app/models/concerns/.keep +0 -0
  38. data/examples/rails-without-webpack/app/snowpacker/assets/fake-asset.png +0 -0
  39. data/examples/rails-without-webpack/app/snowpacker/channels/consumer.js +5 -0
  40. data/examples/rails-without-webpack/app/snowpacker/channels/index.js +2 -0
  41. data/examples/rails-without-webpack/app/snowpacker/entrypoints/application.js +10 -0
  42. data/examples/rails-without-webpack/app/snowpacker/javascript/index.js +1 -0
  43. data/examples/rails-without-webpack/app/snowpacker/stylesheets/index.css +3 -0
  44. data/examples/rails-without-webpack/app/views/layouts/application.html.erb +15 -0
  45. data/examples/rails-without-webpack/app/views/layouts/mailer.html.erb +13 -0
  46. data/examples/rails-without-webpack/app/views/layouts/mailer.text.erb +1 -0
  47. data/examples/rails-without-webpack/app/views/static_pages/index.html.erb +2 -0
  48. data/examples/rails-without-webpack/bin/bundle +114 -0
  49. data/examples/rails-without-webpack/bin/rails +9 -0
  50. data/examples/rails-without-webpack/bin/rake +9 -0
  51. data/examples/rails-without-webpack/bin/setup +36 -0
  52. data/examples/rails-without-webpack/bin/spring +17 -0
  53. data/examples/rails-without-webpack/bin/yarn +9 -0
  54. data/examples/rails-without-webpack/config.ru +5 -0
  55. data/examples/rails-without-webpack/config/application.rb +19 -0
  56. data/examples/rails-without-webpack/config/boot.rb +4 -0
  57. data/examples/rails-without-webpack/config/cable.yml +10 -0
  58. data/examples/rails-without-webpack/config/credentials.yml.enc +1 -0
  59. data/examples/rails-without-webpack/config/database.yml +25 -0
  60. data/examples/rails-without-webpack/config/environment.rb +5 -0
  61. data/examples/rails-without-webpack/config/environments/development.rb +62 -0
  62. data/examples/rails-without-webpack/config/environments/production.rb +112 -0
  63. data/examples/rails-without-webpack/config/environments/test.rb +49 -0
  64. data/examples/rails-without-webpack/config/initializers/application_controller_renderer.rb +8 -0
  65. data/examples/rails-without-webpack/config/initializers/assets.rb +14 -0
  66. data/examples/rails-without-webpack/config/initializers/backtrace_silencers.rb +7 -0
  67. data/examples/rails-without-webpack/config/initializers/content_security_policy.rb +31 -0
  68. data/examples/rails-without-webpack/config/initializers/cookies_serializer.rb +5 -0
  69. data/examples/rails-without-webpack/config/initializers/filter_parameter_logging.rb +4 -0
  70. data/examples/rails-without-webpack/config/initializers/inflections.rb +16 -0
  71. data/examples/rails-without-webpack/config/initializers/mime_types.rb +4 -0
  72. data/examples/rails-without-webpack/config/initializers/snowpacker.rb +41 -0
  73. data/examples/rails-without-webpack/config/initializers/wrap_parameters.rb +14 -0
  74. data/examples/rails-without-webpack/config/locales/en.yml +33 -0
  75. data/examples/rails-without-webpack/config/puma.rb +38 -0
  76. data/examples/rails-without-webpack/config/routes.rb +5 -0
  77. data/examples/rails-without-webpack/config/snowpacker/.browserslistrc +1 -0
  78. data/examples/rails-without-webpack/config/snowpacker/babel.config.js +76 -0
  79. data/examples/rails-without-webpack/config/snowpacker/postcss.config.js +12 -0
  80. data/examples/rails-without-webpack/config/snowpacker/snowpack.config.js +61 -0
  81. data/examples/rails-without-webpack/config/spring.rb +6 -0
  82. data/examples/rails-without-webpack/config/storage.yml +34 -0
  83. data/examples/rails-without-webpack/db/seeds.rb +7 -0
  84. data/examples/rails-without-webpack/lib/assets/.keep +0 -0
  85. data/examples/rails-without-webpack/lib/tasks/.keep +0 -0
  86. data/examples/rails-without-webpack/package.json +20 -0
  87. data/examples/rails-without-webpack/storage/.keep +0 -0
  88. data/examples/rails-without-webpack/test/application_system_test_case.rb +5 -0
  89. data/examples/rails-without-webpack/test/channels/application_cable/connection_test.rb +11 -0
  90. data/examples/rails-without-webpack/test/channels/chat_channel_test.rb +8 -0
  91. data/examples/rails-without-webpack/test/controllers/.keep +0 -0
  92. data/examples/rails-without-webpack/test/controllers/static_pages_controller_test.rb +8 -0
  93. data/examples/rails-without-webpack/test/fixtures/.keep +0 -0
  94. data/examples/rails-without-webpack/test/fixtures/files/.keep +0 -0
  95. data/examples/rails-without-webpack/test/helpers/.keep +0 -0
  96. data/examples/rails-without-webpack/test/integration/.keep +0 -0
  97. data/examples/rails-without-webpack/test/mailers/.keep +0 -0
  98. data/examples/rails-without-webpack/test/models/.keep +0 -0
  99. data/examples/rails-without-webpack/test/system/.keep +0 -0
  100. data/examples/rails-without-webpack/test/test_helper.rb +13 -0
  101. data/examples/rails-without-webpack/vendor/.keep +0 -0
  102. data/examples/rails-without-webpack/yarn.lock +7545 -0
  103. data/lib/tasks/rails.rake +31 -0
  104. data/lib/tasks/ruby.rake +21 -0
  105. data/lib/vite_rb.rb +25 -0
  106. data/lib/vite_rb/configuration.rb +56 -0
  107. data/lib/vite_rb/engine.rb +5 -0
  108. data/lib/vite_rb/env.rb +29 -0
  109. data/lib/vite_rb/generator.rb +81 -0
  110. data/lib/vite_rb/helpers.rb +51 -0
  111. data/lib/vite_rb/manifest.rb +40 -0
  112. data/lib/vite_rb/proxy.rb +35 -0
  113. data/lib/vite_rb/runner.rb +46 -0
  114. data/lib/vite_rb/templates/postcss.config.js +12 -0
  115. data/lib/vite_rb/templates/vite.config.js +71 -0
  116. data/lib/vite_rb/templates/vite.rb.tt +54 -0
  117. data/lib/vite_rb/templates/vite/channels/consumer.js +5 -0
  118. data/lib/vite_rb/templates/vite/channels/index.js +2 -0
  119. data/lib/vite_rb/templates/vite/entrypoints/application.js +10 -0
  120. data/lib/vite_rb/templates/vite/stylesheets/index.css +3 -0
  121. data/lib/vite_rb/utils.rb +55 -0
  122. data/lib/vite_rb/version.rb +5 -0
  123. data/package.json +25 -0
  124. data/package/src/index.js +0 -0
  125. data/vite_rb.gemspec +46 -0
  126. data/yarn.lock +1215 -0
  127. metadata +337 -0
@@ -0,0 +1,71 @@
1
+ const path = require("path")
2
+
3
+ const prefix = "VITE_RB"
4
+
5
+ // Build related items
6
+ const MOUNT_PATH = process.env[`${prefix}_MOUNT_PATH`]
7
+ const OUTPUT_DIR = process.env[`${prefix}_OUTPUT_DIR`]
8
+ const BUILD_DIR = process.env[`${prefix}_BUILD_DIR`]
9
+ // const ENTRYPOINTS_DIR = process.env[`${prefix}_ENTRYPOINTS_DIR`]
10
+
11
+ // Config files
12
+ const BABEL_CONFIG = process.env[`${prefix}_BABEL_CONFIG_FILE`]
13
+ const POSTCSS_CONFIG = process.env[`${prefix}_POSTCSS_CONFIG_FILE`]
14
+
15
+ // Dev server stuff
16
+ const HOSTNAME = process.env[`${prefix}_HOSTNAME`]
17
+ const HTTPS = process.env[`${prefix}_HTTPS`]
18
+ const PORT = process.env[`${prefix}_PORT`]
19
+
20
+ const mount = {
21
+ [MOUNT_PATH]: `/${OUTPUT_DIR}`
22
+ }
23
+
24
+ const installOptions = {
25
+ NODE_ENV: true,
26
+ }
27
+
28
+ const devOptions = {
29
+ hostname: HOSTNAME,
30
+ port: parseInt(PORT, 10),
31
+ open: "none",
32
+ out: BUILD_DIR,
33
+ secure: (HTTPS === "true")
34
+ }
35
+
36
+ const buildOptions = {
37
+ clean: false,
38
+ baseUrl: `/${OUTPUT_DIR}`,
39
+ metaDir: path.join(OUTPUT_DIR, "__snowpack__"),
40
+ webModulesUrl: path.join(OUTPUT_DIR, "web_modules")
41
+ }
42
+
43
+ const plugins = [
44
+ [
45
+ "@snowpack/plugin-build-script",
46
+ {
47
+ "cmd": `postcss --config ${POSTCSS_CONFIG}`,
48
+ "watch": "$1 --watch",
49
+ "input": [".css"],
50
+ "output": [".css"]
51
+ }
52
+ ],
53
+ [
54
+ "@snowpack/plugin-build-script",
55
+ {
56
+ "cmd": `babel --config-file ${BABEL_CONFIG} --filename $FILE`,
57
+ "watch": "$1 --watch",
58
+ "input": [".js"],
59
+ "output": [".js"]
60
+ }
61
+ ],
62
+ ]
63
+
64
+ module.exports = {
65
+ mount,
66
+ plugins: plugins,
67
+ installOptions,
68
+ devOptions,
69
+ buildOptions,
70
+ }
71
+
@@ -0,0 +1,54 @@
1
+ <%- if defined?(Rails) -%>
2
+ Rails.application.config.middleware.insert_before 0, ViteRb::Proxy, {ssl_verify_none: true}
3
+ <%- end -%>
4
+
5
+ ViteRb.configure do |vite|
6
+ # Where to build vite to (out dir)
7
+ vite.build_dir = "public"
8
+
9
+ # url to use for assets IE: /vite/xyz.css, gets built to public/frontend
10
+ vite.output_dir = "vite"
11
+
12
+ # Where to find the config directory
13
+ <%- if defined?(Rails) -%>
14
+ vite.config_path = Rails.root.join("config", "vite")
15
+ vite.mount_path = Rails.root.join("app", "vite")
16
+ vite.manifest_file = Rails.root.join(vite.build_dir, vite.output_dir, "manifest.json")
17
+ <%- else -%>
18
+ vite.config_path = File.join("config", "vite")
19
+ vite.mount_path = File.join("app", "vite")
20
+ vite.manifest_file = File.join(vite.build_dir, vite.output_dir, "manifest.json")
21
+ <%- end -%>
22
+
23
+ # Where to find the snowpack config file
24
+ vite.config_file = File.join(vite.config_path, "snowpack.config.js")
25
+
26
+ # Where to find the babel config file
27
+ vite.babel_config_file = File.join(vite.config_path, "babel.config.js")
28
+
29
+ # Where to find the postcss config file
30
+ vite.postcss_config_file = File.join(vite.config_path, "postcss.config.js")
31
+
32
+ # Where to find your snowpack files
33
+ vite.entrypoints_dir = "entrypoints"
34
+
35
+ # What port to run vite with
36
+ vite.port = "4035"
37
+
38
+ # What hostname to use
39
+ vite.hostname = "localhost"
40
+
41
+ # Whether or not to use https
42
+ # https://www.snowpack.dev/#https%2Fhttp2
43
+ vite.https = false
44
+ end
45
+
46
+ <%- if defined?(Rails) -%>
47
+ ActiveSupport.on_load :action_controller do
48
+ ActionController::Base.helper ViteRb::Helpers
49
+ end
50
+
51
+ ActiveSupport.on_load :action_view do
52
+ include ViteRb::Helpers
53
+ end
54
+ <%- end -%>
@@ -0,0 +1,5 @@
1
+ // Action Cable provides the framework to deal with WebSockets in Rails.
2
+ // You can generate new channels where WebSocket features live using the `rails generate channel` command.
3
+
4
+ import { createConsumer } from "@rails/actioncable"
5
+ export default createConsumer()
@@ -0,0 +1,2 @@
1
+ import importAll from "import-all.macro"
2
+ importAll.sync("./**/*_channel.js")
@@ -0,0 +1,10 @@
1
+ import "@rails/ujs" // Autostarts
2
+ import Turbolinks from "turbolinks"
3
+ import ActiveStorage from "@rails/activestorage"
4
+ import "../stylesheets/index.css"
5
+ import "../javascript"
6
+
7
+ Turbolinks.start()
8
+ ActiveStorage.start()
9
+
10
+ console.log("Hello from Vite")
@@ -0,0 +1,3 @@
1
+ body {
2
+ background: red;
3
+ }
@@ -0,0 +1,55 @@
1
+ module ViteRb
2
+ module Utils
3
+ class << self
4
+ def detect_port!
5
+ hostname = ViteRb.config.hostname
6
+ port = ViteRb.config.port
7
+ server = TCPServer.new(hostname, port)
8
+ server.close
9
+ rescue Errno::EADDRINUSE
10
+ print_port_in_use(port)
11
+ exit!
12
+ end
13
+
14
+ def rails?
15
+ return true if defined?(Rails)
16
+ end
17
+
18
+ def https?
19
+ return true if ENV["VITE_RB_HTTPS"] == "true"
20
+
21
+ false
22
+ end
23
+
24
+ def dev_server_running?
25
+ host = ViteRb.config.hostname
26
+ port = ViteRb.config.port
27
+ connect_timeout = 0.01
28
+
29
+ Socket.tcp(host, port, connect_timeout: connect_timeout).close
30
+ true
31
+ rescue Errno::ECONNREFUSED
32
+ false
33
+ end
34
+
35
+ def host_with_port
36
+ hostname = ViteRb.config.port
37
+ port = ViteRb.config.hostname
38
+ "#{hostname}:#{port}"
39
+ end
40
+
41
+ private
42
+
43
+ def print_port_in_use(port)
44
+ error_message = "\nUnable to start vite dev server\n\n"
45
+ info_message = <<~INFO
46
+ Another program is currently running on port: #{port}
47
+ Please use a different port.
48
+
49
+ INFO
50
+ put error_message, :magenta
51
+ put info_message, :yellow
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ViteRb
4
+ VERSION = "0.0.1.alpha1"
5
+ end
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "vite_rb",
3
+ "version": "0.0.1-alpha1",
4
+ "description": "An npm package for integration with ViteRb",
5
+ "repository": "git@github.com:ParamagicDev/vite_rb.git",
6
+ "author": "paramagicdev <konnor5456@gmail.com>",
7
+ "license": "MIT",
8
+ "source": "package/src/index.js",
9
+ "main": "package/dist/viteRb.js",
10
+ "module": "package/dist/viteRb.module.js",
11
+ "files": [],
12
+ "scripts": {
13
+ "dev": "yarn build --watch",
14
+ "deploy": "yarn version"
15
+ },
16
+ "devDependencies": {},
17
+ "dependencies": {
18
+ "postcss": "^8.1.1",
19
+ "postcss-cli": "^8.0.0",
20
+ "postcss-flexbugs-fixes": "^4.2.1",
21
+ "postcss-import": "^12.0.1",
22
+ "postcss-preset-env": "^6.7.0",
23
+ "vite": "^2.0.0-beta.21"
24
+ }
25
+ }
File without changes
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ $:.push File.expand_path("../lib", __FILE__)
4
+ require "vite_rb/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "vite_rb"
8
+ spec.version = ViteRb::VERSION
9
+ spec.authors = ["Konnor Rogers"]
10
+ spec.email = ["konnor7414@gmail.com"]
11
+
12
+ spec.summary = "Rails integration of Vite"
13
+ spec.description = "Rails integration of Vite"
14
+ spec.homepage = "http://github.com/paramagicdev/vite_rb"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_runtime_dependency "rack-proxy", "~> 0.6.4"
34
+ spec.add_runtime_dependency "rake", ">= 13.0"
35
+ spec.add_runtime_dependency "thor", "~> 0.20"
36
+
37
+ spec.add_development_dependency "bundler", "~> 2"
38
+ spec.add_development_dependency "conventional-changelog", "~> 1.2"
39
+ spec.add_development_dependency "minitest", ">= 5.14"
40
+ spec.add_development_dependency "pry", "~> 0.12"
41
+ spec.add_development_dependency "rails", "~> 6.0"
42
+ spec.add_development_dependency "standardrb", "~> 1.0"
43
+ spec.add_development_dependency "yard", "~> 0.9"
44
+ spec.add_development_dependency "minitest-reporters", "~> 1.4"
45
+ spec.add_development_dependency "tzinfo-data"
46
+ end
@@ -0,0 +1,1215 @@
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+
4
+
5
+ "@csstools/convert-colors@^1.4.0":
6
+ version "1.4.0"
7
+ resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
8
+ integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
9
+
10
+ "@nodelib/fs.scandir@2.1.3":
11
+ version "2.1.3"
12
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
13
+ integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==
14
+ dependencies:
15
+ "@nodelib/fs.stat" "2.0.3"
16
+ run-parallel "^1.1.9"
17
+
18
+ "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
19
+ version "2.0.3"
20
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
21
+ integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==
22
+
23
+ "@nodelib/fs.walk@^1.2.3":
24
+ version "1.2.4"
25
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
26
+ integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==
27
+ dependencies:
28
+ "@nodelib/fs.scandir" "2.1.3"
29
+ fastq "^1.6.0"
30
+
31
+ ansi-regex@^5.0.0:
32
+ version "5.0.0"
33
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
34
+ integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
35
+
36
+ ansi-styles@^3.2.1:
37
+ version "3.2.1"
38
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
39
+ integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
40
+ dependencies:
41
+ color-convert "^1.9.0"
42
+
43
+ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
44
+ version "4.3.0"
45
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
46
+ integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
47
+ dependencies:
48
+ color-convert "^2.0.1"
49
+
50
+ anymatch@~3.1.1:
51
+ version "3.1.1"
52
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
53
+ integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
54
+ dependencies:
55
+ normalize-path "^3.0.0"
56
+ picomatch "^2.0.4"
57
+
58
+ argparse@^1.0.7:
59
+ version "1.0.10"
60
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
61
+ integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
62
+ dependencies:
63
+ sprintf-js "~1.0.2"
64
+
65
+ array-union@^2.1.0:
66
+ version "2.1.0"
67
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
68
+ integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
69
+
70
+ at-least-node@^1.0.0:
71
+ version "1.0.0"
72
+ resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
73
+ integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
74
+
75
+ autoprefixer@^9.6.1:
76
+ version "9.8.6"
77
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
78
+ integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
79
+ dependencies:
80
+ browserslist "^4.12.0"
81
+ caniuse-lite "^1.0.30001109"
82
+ colorette "^1.2.1"
83
+ normalize-range "^0.1.2"
84
+ num2fraction "^1.2.2"
85
+ postcss "^7.0.32"
86
+ postcss-value-parser "^4.1.0"
87
+
88
+ balanced-match@^1.0.0:
89
+ version "1.0.0"
90
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
91
+ integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
92
+
93
+ binary-extensions@^2.0.0:
94
+ version "2.1.0"
95
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9"
96
+ integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==
97
+
98
+ braces@^3.0.1, braces@~3.0.2:
99
+ version "3.0.2"
100
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
101
+ integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
102
+ dependencies:
103
+ fill-range "^7.0.1"
104
+
105
+ browserslist@^4.12.0, browserslist@^4.6.4:
106
+ version "4.14.5"
107
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015"
108
+ integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA==
109
+ dependencies:
110
+ caniuse-lite "^1.0.30001135"
111
+ electron-to-chromium "^1.3.571"
112
+ escalade "^3.1.0"
113
+ node-releases "^1.1.61"
114
+
115
+ caller-callsite@^2.0.0:
116
+ version "2.0.0"
117
+ resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
118
+ integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
119
+ dependencies:
120
+ callsites "^2.0.0"
121
+
122
+ caller-path@^2.0.0:
123
+ version "2.0.0"
124
+ resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
125
+ integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
126
+ dependencies:
127
+ caller-callsite "^2.0.0"
128
+
129
+ callsites@^2.0.0:
130
+ version "2.0.0"
131
+ resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
132
+ integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
133
+
134
+ caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001135:
135
+ version "1.0.30001144"
136
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001144.tgz#bca0fffde12f97e1127a351fec3bfc1971aa3b3d"
137
+ integrity sha512-4GQTEWNMnVZVOFG3BK0xvGeaDAtiPAbG2N8yuMXuXzx/c2Vd4XoMPO8+E918zeXn5IF0FRVtGShBfkfQea2wHQ==
138
+
139
+ chalk@^2.4.2:
140
+ version "2.4.2"
141
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
142
+ integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
143
+ dependencies:
144
+ ansi-styles "^3.2.1"
145
+ escape-string-regexp "^1.0.5"
146
+ supports-color "^5.3.0"
147
+
148
+ chalk@^4.0.0:
149
+ version "4.1.0"
150
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
151
+ integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
152
+ dependencies:
153
+ ansi-styles "^4.1.0"
154
+ supports-color "^7.1.0"
155
+
156
+ chokidar@^3.3.0:
157
+ version "3.4.2"
158
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d"
159
+ integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==
160
+ dependencies:
161
+ anymatch "~3.1.1"
162
+ braces "~3.0.2"
163
+ glob-parent "~5.1.0"
164
+ is-binary-path "~2.1.0"
165
+ is-glob "~4.0.1"
166
+ normalize-path "~3.0.0"
167
+ readdirp "~3.4.0"
168
+ optionalDependencies:
169
+ fsevents "~2.1.2"
170
+
171
+ cliui@^7.0.0:
172
+ version "7.0.1"
173
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.1.tgz#a4cb67aad45cd83d8d05128fc9f4d8fbb887e6b3"
174
+ integrity sha512-rcvHOWyGyid6I1WjT/3NatKj2kDt9OdSHSXpyLXaMWFbKpGACNW8pRhhdPUq9MWUOdwn8Rz9AVETjF4105rZZQ==
175
+ dependencies:
176
+ string-width "^4.2.0"
177
+ strip-ansi "^6.0.0"
178
+ wrap-ansi "^7.0.0"
179
+
180
+ color-convert@^1.9.0:
181
+ version "1.9.3"
182
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
183
+ integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
184
+ dependencies:
185
+ color-name "1.1.3"
186
+
187
+ color-convert@^2.0.1:
188
+ version "2.0.1"
189
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
190
+ integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
191
+ dependencies:
192
+ color-name "~1.1.4"
193
+
194
+ color-name@1.1.3:
195
+ version "1.1.3"
196
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
197
+ integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
198
+
199
+ color-name@~1.1.4:
200
+ version "1.1.4"
201
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
202
+ integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
203
+
204
+ colorette@^1.2.1:
205
+ version "1.2.1"
206
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
207
+ integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
208
+
209
+ cosmiconfig@^5.0.0:
210
+ version "5.2.1"
211
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
212
+ integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
213
+ dependencies:
214
+ import-fresh "^2.0.0"
215
+ is-directory "^0.3.1"
216
+ js-yaml "^3.13.1"
217
+ parse-json "^4.0.0"
218
+
219
+ css-blank-pseudo@^0.1.4:
220
+ version "0.1.4"
221
+ resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5"
222
+ integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==
223
+ dependencies:
224
+ postcss "^7.0.5"
225
+
226
+ css-has-pseudo@^0.10.0:
227
+ version "0.10.0"
228
+ resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee"
229
+ integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==
230
+ dependencies:
231
+ postcss "^7.0.6"
232
+ postcss-selector-parser "^5.0.0-rc.4"
233
+
234
+ css-prefers-color-scheme@^3.1.1:
235
+ version "3.1.1"
236
+ resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4"
237
+ integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==
238
+ dependencies:
239
+ postcss "^7.0.5"
240
+
241
+ cssdb@^4.4.0:
242
+ version "4.4.0"
243
+ resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0"
244
+ integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
245
+
246
+ cssesc@^2.0.0:
247
+ version "2.0.0"
248
+ resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
249
+ integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
250
+
251
+ cssesc@^3.0.0:
252
+ version "3.0.0"
253
+ resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
254
+ integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
255
+
256
+ dependency-graph@^0.9.0:
257
+ version "0.9.0"
258
+ resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.9.0.tgz#11aed7e203bc8b00f48356d92db27b265c445318"
259
+ integrity sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w==
260
+
261
+ dir-glob@^3.0.1:
262
+ version "3.0.1"
263
+ resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
264
+ integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
265
+ dependencies:
266
+ path-type "^4.0.0"
267
+
268
+ electron-to-chromium@^1.3.571:
269
+ version "1.3.578"
270
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.578.tgz#e6671936f4571a874eb26e2e833aa0b2c0b776e0"
271
+ integrity sha512-z4gU6dA1CbBJsAErW5swTGAaU2TBzc2mPAonJb00zqW1rOraDo2zfBMDRvaz9cVic+0JEZiYbHWPw/fTaZlG2Q==
272
+
273
+ emoji-regex@^8.0.0:
274
+ version "8.0.0"
275
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
276
+ integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
277
+
278
+ error-ex@^1.3.1:
279
+ version "1.3.2"
280
+ resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
281
+ integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
282
+ dependencies:
283
+ is-arrayish "^0.2.1"
284
+
285
+ esbuild@^0.8.26:
286
+ version "0.8.31"
287
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.8.31.tgz#c21e7adb3ad283c951a53de7ad64a5ae2df2ed34"
288
+ integrity sha512-7EIU0VdUxltwivjVezX3HgeNzeIVR1snkrAo57WdUnuBMykdzin5rTrxwCDM6xQqj0RL/HjOEm3wFr2ijHKeaA==
289
+
290
+ escalade@^3.0.2, escalade@^3.1.0:
291
+ version "3.1.0"
292
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.0.tgz#e8e2d7c7a8b76f6ee64c2181d6b8151441602d4e"
293
+ integrity sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig==
294
+
295
+ escape-string-regexp@^1.0.5:
296
+ version "1.0.5"
297
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
298
+ integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
299
+
300
+ esprima@^4.0.0:
301
+ version "4.0.1"
302
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
303
+ integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
304
+
305
+ fast-glob@^3.1.1:
306
+ version "3.2.4"
307
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
308
+ integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==
309
+ dependencies:
310
+ "@nodelib/fs.stat" "^2.0.2"
311
+ "@nodelib/fs.walk" "^1.2.3"
312
+ glob-parent "^5.1.0"
313
+ merge2 "^1.3.0"
314
+ micromatch "^4.0.2"
315
+ picomatch "^2.2.1"
316
+
317
+ fastq@^1.6.0:
318
+ version "1.8.0"
319
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.8.0.tgz#550e1f9f59bbc65fe185cb6a9b4d95357107f481"
320
+ integrity sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==
321
+ dependencies:
322
+ reusify "^1.0.4"
323
+
324
+ fill-range@^7.0.1:
325
+ version "7.0.1"
326
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
327
+ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
328
+ dependencies:
329
+ to-regex-range "^5.0.1"
330
+
331
+ flatten@^1.0.2:
332
+ version "1.0.3"
333
+ resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b"
334
+ integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
335
+
336
+ fs-extra@^9.0.0:
337
+ version "9.0.1"
338
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc"
339
+ integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==
340
+ dependencies:
341
+ at-least-node "^1.0.0"
342
+ graceful-fs "^4.2.0"
343
+ jsonfile "^6.0.1"
344
+ universalify "^1.0.0"
345
+
346
+ fsevents@~2.1.2:
347
+ version "2.1.3"
348
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
349
+ integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
350
+
351
+ function-bind@^1.1.1:
352
+ version "1.1.1"
353
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
354
+ integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
355
+
356
+ get-caller-file@^2.0.5:
357
+ version "2.0.5"
358
+ resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
359
+ integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
360
+
361
+ get-stdin@^8.0.0:
362
+ version "8.0.0"
363
+ resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53"
364
+ integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==
365
+
366
+ glob-parent@^5.1.0, glob-parent@~5.1.0:
367
+ version "5.1.1"
368
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
369
+ integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
370
+ dependencies:
371
+ is-glob "^4.0.1"
372
+
373
+ globby@^11.0.0:
374
+ version "11.0.1"
375
+ resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
376
+ integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
377
+ dependencies:
378
+ array-union "^2.1.0"
379
+ dir-glob "^3.0.1"
380
+ fast-glob "^3.1.1"
381
+ ignore "^5.1.4"
382
+ merge2 "^1.3.0"
383
+ slash "^3.0.0"
384
+
385
+ graceful-fs@^4.1.6, graceful-fs@^4.2.0:
386
+ version "4.2.4"
387
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
388
+ integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
389
+
390
+ has-flag@^3.0.0:
391
+ version "3.0.0"
392
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
393
+ integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
394
+
395
+ has-flag@^4.0.0:
396
+ version "4.0.0"
397
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
398
+ integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
399
+
400
+ has@^1.0.3:
401
+ version "1.0.3"
402
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
403
+ integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
404
+ dependencies:
405
+ function-bind "^1.1.1"
406
+
407
+ ignore@^5.1.4:
408
+ version "5.1.8"
409
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
410
+ integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
411
+
412
+ import-cwd@^2.0.0:
413
+ version "2.1.0"
414
+ resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
415
+ integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
416
+ dependencies:
417
+ import-from "^2.1.0"
418
+
419
+ import-fresh@^2.0.0:
420
+ version "2.0.0"
421
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
422
+ integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
423
+ dependencies:
424
+ caller-path "^2.0.0"
425
+ resolve-from "^3.0.0"
426
+
427
+ import-from@^2.1.0:
428
+ version "2.1.0"
429
+ resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
430
+ integrity sha1-M1238qev/VOqpHHUuAId7ja387E=
431
+ dependencies:
432
+ resolve-from "^3.0.0"
433
+
434
+ indexes-of@^1.0.1:
435
+ version "1.0.1"
436
+ resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
437
+ integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
438
+
439
+ is-arrayish@^0.2.1:
440
+ version "0.2.1"
441
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
442
+ integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
443
+
444
+ is-binary-path@~2.1.0:
445
+ version "2.1.0"
446
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
447
+ integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
448
+ dependencies:
449
+ binary-extensions "^2.0.0"
450
+
451
+ is-core-module@^2.1.0:
452
+ version "2.2.0"
453
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
454
+ integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
455
+ dependencies:
456
+ has "^1.0.3"
457
+
458
+ is-directory@^0.3.1:
459
+ version "0.3.1"
460
+ resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
461
+ integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
462
+
463
+ is-extglob@^2.1.1:
464
+ version "2.1.1"
465
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
466
+ integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
467
+
468
+ is-fullwidth-code-point@^3.0.0:
469
+ version "3.0.0"
470
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
471
+ integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
472
+
473
+ is-glob@^4.0.1, is-glob@~4.0.1:
474
+ version "4.0.1"
475
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
476
+ integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
477
+ dependencies:
478
+ is-extglob "^2.1.1"
479
+
480
+ is-number@^7.0.0:
481
+ version "7.0.0"
482
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
483
+ integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
484
+
485
+ isarray@1.0.0, isarray@^1.0.0:
486
+ version "1.0.0"
487
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
488
+ integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
489
+
490
+ isobject@^2.0.0:
491
+ version "2.1.0"
492
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
493
+ integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
494
+ dependencies:
495
+ isarray "1.0.0"
496
+
497
+ js-yaml@^3.13.1:
498
+ version "3.14.0"
499
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
500
+ integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
501
+ dependencies:
502
+ argparse "^1.0.7"
503
+ esprima "^4.0.0"
504
+
505
+ json-parse-better-errors@^1.0.1:
506
+ version "1.0.2"
507
+ resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
508
+ integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
509
+
510
+ jsonfile@^6.0.1:
511
+ version "6.0.1"
512
+ resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179"
513
+ integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==
514
+ dependencies:
515
+ universalify "^1.0.0"
516
+ optionalDependencies:
517
+ graceful-fs "^4.1.6"
518
+
519
+ line-column@^1.0.2:
520
+ version "1.0.2"
521
+ resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2"
522
+ integrity sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=
523
+ dependencies:
524
+ isarray "^1.0.0"
525
+ isobject "^2.0.0"
526
+
527
+ lodash._reinterpolate@^3.0.0:
528
+ version "3.0.0"
529
+ resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
530
+ integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
531
+
532
+ lodash.difference@^4.5.0:
533
+ version "4.5.0"
534
+ resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c"
535
+ integrity sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=
536
+
537
+ lodash.forown@^4.4.0:
538
+ version "4.4.0"
539
+ resolved "https://registry.yarnpkg.com/lodash.forown/-/lodash.forown-4.4.0.tgz#85115cf04f73ef966eced52511d3893cc46683af"
540
+ integrity sha1-hRFc8E9z75ZuztUlEdOJPMRmg68=
541
+
542
+ lodash.get@^4.4.2:
543
+ version "4.4.2"
544
+ resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
545
+ integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
546
+
547
+ lodash.groupby@^4.6.0:
548
+ version "4.6.0"
549
+ resolved "https://registry.yarnpkg.com/lodash.groupby/-/lodash.groupby-4.6.0.tgz#0b08a1dcf68397c397855c3239783832df7403d1"
550
+ integrity sha1-Cwih3PaDl8OXhVwyOXg4Mt90A9E=
551
+
552
+ lodash.sortby@^4.7.0:
553
+ version "4.7.0"
554
+ resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
555
+ integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
556
+
557
+ lodash.template@^4.5.0:
558
+ version "4.5.0"
559
+ resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
560
+ integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
561
+ dependencies:
562
+ lodash._reinterpolate "^3.0.0"
563
+ lodash.templatesettings "^4.0.0"
564
+
565
+ lodash.templatesettings@^4.0.0:
566
+ version "4.2.0"
567
+ resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
568
+ integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
569
+ dependencies:
570
+ lodash._reinterpolate "^3.0.0"
571
+
572
+ log-symbols@^4.0.0:
573
+ version "4.0.0"
574
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920"
575
+ integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==
576
+ dependencies:
577
+ chalk "^4.0.0"
578
+
579
+ merge2@^1.3.0:
580
+ version "1.4.1"
581
+ resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
582
+ integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
583
+
584
+ micromatch@^4.0.2:
585
+ version "4.0.2"
586
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
587
+ integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
588
+ dependencies:
589
+ braces "^3.0.1"
590
+ picomatch "^2.0.5"
591
+
592
+ nanoid@^3.1.12:
593
+ version "3.1.12"
594
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.12.tgz#6f7736c62e8d39421601e4a0c77623a97ea69654"
595
+ integrity sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A==
596
+
597
+ nanoid@^3.1.20:
598
+ version "3.1.20"
599
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"
600
+ integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
601
+
602
+ node-releases@^1.1.61:
603
+ version "1.1.61"
604
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.61.tgz#707b0fca9ce4e11783612ba4a2fcba09047af16e"
605
+ integrity sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g==
606
+
607
+ normalize-path@^3.0.0, normalize-path@~3.0.0:
608
+ version "3.0.0"
609
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
610
+ integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
611
+
612
+ normalize-range@^0.1.2:
613
+ version "0.1.2"
614
+ resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
615
+ integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
616
+
617
+ num2fraction@^1.2.2:
618
+ version "1.2.2"
619
+ resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
620
+ integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
621
+
622
+ parse-json@^4.0.0:
623
+ version "4.0.0"
624
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
625
+ integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
626
+ dependencies:
627
+ error-ex "^1.3.1"
628
+ json-parse-better-errors "^1.0.1"
629
+
630
+ path-parse@^1.0.6:
631
+ version "1.0.6"
632
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
633
+ integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
634
+
635
+ path-type@^4.0.0:
636
+ version "4.0.0"
637
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
638
+ integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
639
+
640
+ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
641
+ version "2.2.2"
642
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
643
+ integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
644
+
645
+ pify@^2.3.0:
646
+ version "2.3.0"
647
+ resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
648
+ integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
649
+
650
+ postcss-attribute-case-insensitive@^4.0.1:
651
+ version "4.0.2"
652
+ resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz#d93e46b504589e94ac7277b0463226c68041a880"
653
+ integrity sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==
654
+ dependencies:
655
+ postcss "^7.0.2"
656
+ postcss-selector-parser "^6.0.2"
657
+
658
+ postcss-cli@^8.0.0:
659
+ version "8.0.0"
660
+ resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-8.0.0.tgz#f4930e9ef201b08e62661483607bfd9efc74b596"
661
+ integrity sha512-WgQIz1tc8htjob2DULE6dTssDzItuBh3UbscdrAlvid7M6X2WBZUrHCaLMtIuFkHFijAnimIq3nkpXV6FdDTSg==
662
+ dependencies:
663
+ chalk "^4.0.0"
664
+ chokidar "^3.3.0"
665
+ dependency-graph "^0.9.0"
666
+ fs-extra "^9.0.0"
667
+ get-stdin "^8.0.0"
668
+ globby "^11.0.0"
669
+ postcss-load-config "^2.1.1"
670
+ postcss-reporter "^7.0.0"
671
+ pretty-hrtime "^1.0.3"
672
+ read-cache "^1.0.0"
673
+ yargs "^16.0.0"
674
+
675
+ postcss-color-functional-notation@^2.0.1:
676
+ version "2.0.1"
677
+ resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz#5efd37a88fbabeb00a2966d1e53d98ced93f74e0"
678
+ integrity sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==
679
+ dependencies:
680
+ postcss "^7.0.2"
681
+ postcss-values-parser "^2.0.0"
682
+
683
+ postcss-color-gray@^5.0.0:
684
+ version "5.0.0"
685
+ resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz#532a31eb909f8da898ceffe296fdc1f864be8547"
686
+ integrity sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==
687
+ dependencies:
688
+ "@csstools/convert-colors" "^1.4.0"
689
+ postcss "^7.0.5"
690
+ postcss-values-parser "^2.0.0"
691
+
692
+ postcss-color-hex-alpha@^5.0.3:
693
+ version "5.0.3"
694
+ resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388"
695
+ integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==
696
+ dependencies:
697
+ postcss "^7.0.14"
698
+ postcss-values-parser "^2.0.1"
699
+
700
+ postcss-color-mod-function@^3.0.3:
701
+ version "3.0.3"
702
+ resolved "https://registry.yarnpkg.com/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz#816ba145ac11cc3cb6baa905a75a49f903e4d31d"
703
+ integrity sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==
704
+ dependencies:
705
+ "@csstools/convert-colors" "^1.4.0"
706
+ postcss "^7.0.2"
707
+ postcss-values-parser "^2.0.0"
708
+
709
+ postcss-color-rebeccapurple@^4.0.1:
710
+ version "4.0.1"
711
+ resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz#c7a89be872bb74e45b1e3022bfe5748823e6de77"
712
+ integrity sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==
713
+ dependencies:
714
+ postcss "^7.0.2"
715
+ postcss-values-parser "^2.0.0"
716
+
717
+ postcss-custom-media@^7.0.8:
718
+ version "7.0.8"
719
+ resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c"
720
+ integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==
721
+ dependencies:
722
+ postcss "^7.0.14"
723
+
724
+ postcss-custom-properties@^8.0.11:
725
+ version "8.0.11"
726
+ resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz#2d61772d6e92f22f5e0d52602df8fae46fa30d97"
727
+ integrity sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==
728
+ dependencies:
729
+ postcss "^7.0.17"
730
+ postcss-values-parser "^2.0.1"
731
+
732
+ postcss-custom-selectors@^5.1.2:
733
+ version "5.1.2"
734
+ resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz#64858c6eb2ecff2fb41d0b28c9dd7b3db4de7fba"
735
+ integrity sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==
736
+ dependencies:
737
+ postcss "^7.0.2"
738
+ postcss-selector-parser "^5.0.0-rc.3"
739
+
740
+ postcss-dir-pseudo-class@^5.0.0:
741
+ version "5.0.0"
742
+ resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz#6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2"
743
+ integrity sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==
744
+ dependencies:
745
+ postcss "^7.0.2"
746
+ postcss-selector-parser "^5.0.0-rc.3"
747
+
748
+ postcss-double-position-gradients@^1.0.0:
749
+ version "1.0.0"
750
+ resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz#fc927d52fddc896cb3a2812ebc5df147e110522e"
751
+ integrity sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==
752
+ dependencies:
753
+ postcss "^7.0.5"
754
+ postcss-values-parser "^2.0.0"
755
+
756
+ postcss-env-function@^2.0.2:
757
+ version "2.0.2"
758
+ resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-2.0.2.tgz#0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7"
759
+ integrity sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==
760
+ dependencies:
761
+ postcss "^7.0.2"
762
+ postcss-values-parser "^2.0.0"
763
+
764
+ postcss-flexbugs-fixes@^4.2.1:
765
+ version "4.2.1"
766
+ resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz#9218a65249f30897deab1033aced8578562a6690"
767
+ integrity sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==
768
+ dependencies:
769
+ postcss "^7.0.26"
770
+
771
+ postcss-focus-visible@^4.0.0:
772
+ version "4.0.0"
773
+ resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz#477d107113ade6024b14128317ade2bd1e17046e"
774
+ integrity sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==
775
+ dependencies:
776
+ postcss "^7.0.2"
777
+
778
+ postcss-focus-within@^3.0.0:
779
+ version "3.0.0"
780
+ resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz#763b8788596cee9b874c999201cdde80659ef680"
781
+ integrity sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==
782
+ dependencies:
783
+ postcss "^7.0.2"
784
+
785
+ postcss-font-variant@^4.0.0:
786
+ version "4.0.0"
787
+ resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz#71dd3c6c10a0d846c5eda07803439617bbbabacc"
788
+ integrity sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg==
789
+ dependencies:
790
+ postcss "^7.0.2"
791
+
792
+ postcss-gap-properties@^2.0.0:
793
+ version "2.0.0"
794
+ resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz#431c192ab3ed96a3c3d09f2ff615960f902c1715"
795
+ integrity sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==
796
+ dependencies:
797
+ postcss "^7.0.2"
798
+
799
+ postcss-image-set-function@^3.0.1:
800
+ version "3.0.1"
801
+ resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288"
802
+ integrity sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==
803
+ dependencies:
804
+ postcss "^7.0.2"
805
+ postcss-values-parser "^2.0.0"
806
+
807
+ postcss-import@^12.0.1:
808
+ version "12.0.1"
809
+ resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-12.0.1.tgz#cf8c7ab0b5ccab5649024536e565f841928b7153"
810
+ integrity sha512-3Gti33dmCjyKBgimqGxL3vcV8w9+bsHwO5UrBawp796+jdardbcFl4RP5w/76BwNL7aGzpKstIfF9I+kdE8pTw==
811
+ dependencies:
812
+ postcss "^7.0.1"
813
+ postcss-value-parser "^3.2.3"
814
+ read-cache "^1.0.0"
815
+ resolve "^1.1.7"
816
+
817
+ postcss-initial@^3.0.0:
818
+ version "3.0.2"
819
+ resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.2.tgz#f018563694b3c16ae8eaabe3c585ac6319637b2d"
820
+ integrity sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==
821
+ dependencies:
822
+ lodash.template "^4.5.0"
823
+ postcss "^7.0.2"
824
+
825
+ postcss-lab-function@^2.0.1:
826
+ version "2.0.1"
827
+ resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz#bb51a6856cd12289ab4ae20db1e3821ef13d7d2e"
828
+ integrity sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==
829
+ dependencies:
830
+ "@csstools/convert-colors" "^1.4.0"
831
+ postcss "^7.0.2"
832
+ postcss-values-parser "^2.0.0"
833
+
834
+ postcss-load-config@^2.1.1:
835
+ version "2.1.2"
836
+ resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a"
837
+ integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==
838
+ dependencies:
839
+ cosmiconfig "^5.0.0"
840
+ import-cwd "^2.0.0"
841
+
842
+ postcss-logical@^3.0.0:
843
+ version "3.0.0"
844
+ resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5"
845
+ integrity sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==
846
+ dependencies:
847
+ postcss "^7.0.2"
848
+
849
+ postcss-media-minmax@^4.0.0:
850
+ version "4.0.0"
851
+ resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz#b75bb6cbc217c8ac49433e12f22048814a4f5ed5"
852
+ integrity sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==
853
+ dependencies:
854
+ postcss "^7.0.2"
855
+
856
+ postcss-nesting@^7.0.0:
857
+ version "7.0.1"
858
+ resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052"
859
+ integrity sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==
860
+ dependencies:
861
+ postcss "^7.0.2"
862
+
863
+ postcss-overflow-shorthand@^2.0.0:
864
+ version "2.0.0"
865
+ resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz#31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30"
866
+ integrity sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==
867
+ dependencies:
868
+ postcss "^7.0.2"
869
+
870
+ postcss-page-break@^2.0.0:
871
+ version "2.0.0"
872
+ resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-2.0.0.tgz#add52d0e0a528cabe6afee8b46e2abb277df46bf"
873
+ integrity sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==
874
+ dependencies:
875
+ postcss "^7.0.2"
876
+
877
+ postcss-place@^4.0.1:
878
+ version "4.0.1"
879
+ resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-4.0.1.tgz#e9f39d33d2dc584e46ee1db45adb77ca9d1dcc62"
880
+ integrity sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==
881
+ dependencies:
882
+ postcss "^7.0.2"
883
+ postcss-values-parser "^2.0.0"
884
+
885
+ postcss-preset-env@^6.7.0:
886
+ version "6.7.0"
887
+ resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz#c34ddacf8f902383b35ad1e030f178f4cdf118a5"
888
+ integrity sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==
889
+ dependencies:
890
+ autoprefixer "^9.6.1"
891
+ browserslist "^4.6.4"
892
+ caniuse-lite "^1.0.30000981"
893
+ css-blank-pseudo "^0.1.4"
894
+ css-has-pseudo "^0.10.0"
895
+ css-prefers-color-scheme "^3.1.1"
896
+ cssdb "^4.4.0"
897
+ postcss "^7.0.17"
898
+ postcss-attribute-case-insensitive "^4.0.1"
899
+ postcss-color-functional-notation "^2.0.1"
900
+ postcss-color-gray "^5.0.0"
901
+ postcss-color-hex-alpha "^5.0.3"
902
+ postcss-color-mod-function "^3.0.3"
903
+ postcss-color-rebeccapurple "^4.0.1"
904
+ postcss-custom-media "^7.0.8"
905
+ postcss-custom-properties "^8.0.11"
906
+ postcss-custom-selectors "^5.1.2"
907
+ postcss-dir-pseudo-class "^5.0.0"
908
+ postcss-double-position-gradients "^1.0.0"
909
+ postcss-env-function "^2.0.2"
910
+ postcss-focus-visible "^4.0.0"
911
+ postcss-focus-within "^3.0.0"
912
+ postcss-font-variant "^4.0.0"
913
+ postcss-gap-properties "^2.0.0"
914
+ postcss-image-set-function "^3.0.1"
915
+ postcss-initial "^3.0.0"
916
+ postcss-lab-function "^2.0.1"
917
+ postcss-logical "^3.0.0"
918
+ postcss-media-minmax "^4.0.0"
919
+ postcss-nesting "^7.0.0"
920
+ postcss-overflow-shorthand "^2.0.0"
921
+ postcss-page-break "^2.0.0"
922
+ postcss-place "^4.0.1"
923
+ postcss-pseudo-class-any-link "^6.0.0"
924
+ postcss-replace-overflow-wrap "^3.0.0"
925
+ postcss-selector-matches "^4.0.0"
926
+ postcss-selector-not "^4.0.0"
927
+
928
+ postcss-pseudo-class-any-link@^6.0.0:
929
+ version "6.0.0"
930
+ resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz#2ed3eed393b3702879dec4a87032b210daeb04d1"
931
+ integrity sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==
932
+ dependencies:
933
+ postcss "^7.0.2"
934
+ postcss-selector-parser "^5.0.0-rc.3"
935
+
936
+ postcss-replace-overflow-wrap@^3.0.0:
937
+ version "3.0.0"
938
+ resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz#61b360ffdaedca84c7c918d2b0f0d0ea559ab01c"
939
+ integrity sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==
940
+ dependencies:
941
+ postcss "^7.0.2"
942
+
943
+ postcss-reporter@^7.0.0:
944
+ version "7.0.1"
945
+ resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-7.0.1.tgz#463780d0d8d64f356403eba901fdeae71d988f2b"
946
+ integrity sha512-R9AK80KIqqMb+lwGRBcRkXS7r96VCTxrZvvrfibyA/dWjqctwx7leHMCC05A9HbW8PnChwOWwrmISwp5HQu5wg==
947
+ dependencies:
948
+ colorette "^1.2.1"
949
+ lodash.difference "^4.5.0"
950
+ lodash.forown "^4.4.0"
951
+ lodash.get "^4.4.2"
952
+ lodash.groupby "^4.6.0"
953
+ lodash.sortby "^4.7.0"
954
+ log-symbols "^4.0.0"
955
+
956
+ postcss-selector-matches@^4.0.0:
957
+ version "4.0.0"
958
+ resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff"
959
+ integrity sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==
960
+ dependencies:
961
+ balanced-match "^1.0.0"
962
+ postcss "^7.0.2"
963
+
964
+ postcss-selector-not@^4.0.0:
965
+ version "4.0.0"
966
+ resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz#c68ff7ba96527499e832724a2674d65603b645c0"
967
+ integrity sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==
968
+ dependencies:
969
+ balanced-match "^1.0.0"
970
+ postcss "^7.0.2"
971
+
972
+ postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4:
973
+ version "5.0.0"
974
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c"
975
+ integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
976
+ dependencies:
977
+ cssesc "^2.0.0"
978
+ indexes-of "^1.0.1"
979
+ uniq "^1.0.1"
980
+
981
+ postcss-selector-parser@^6.0.2:
982
+ version "6.0.4"
983
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3"
984
+ integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==
985
+ dependencies:
986
+ cssesc "^3.0.0"
987
+ indexes-of "^1.0.1"
988
+ uniq "^1.0.1"
989
+ util-deprecate "^1.0.2"
990
+
991
+ postcss-value-parser@^3.2.3:
992
+ version "3.3.1"
993
+ resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
994
+ integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
995
+
996
+ postcss-value-parser@^4.1.0:
997
+ version "4.1.0"
998
+ resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
999
+ integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
1000
+
1001
+ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
1002
+ version "2.0.1"
1003
+ resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f"
1004
+ integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==
1005
+ dependencies:
1006
+ flatten "^1.0.2"
1007
+ indexes-of "^1.0.1"
1008
+ uniq "^1.0.1"
1009
+
1010
+ postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
1011
+ version "7.0.35"
1012
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
1013
+ integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
1014
+ dependencies:
1015
+ chalk "^2.4.2"
1016
+ source-map "^0.6.1"
1017
+ supports-color "^6.1.0"
1018
+
1019
+ postcss@^8.1.1:
1020
+ version "8.1.1"
1021
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.1.1.tgz#c3a287dd10e4f6c84cb3791052b96a5d859c9389"
1022
+ integrity sha512-9DGLSsjooH3kSNjTZUOt2eIj2ZTW0VI2PZ/3My+8TC7KIbH2OKwUlISfDsf63EP4aiRUt3XkEWMWvyJHvJelEg==
1023
+ dependencies:
1024
+ colorette "^1.2.1"
1025
+ line-column "^1.0.2"
1026
+ nanoid "^3.1.12"
1027
+ source-map "^0.6.1"
1028
+
1029
+ postcss@^8.2.1:
1030
+ version "8.2.4"
1031
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.4.tgz#20a98a39cf303d15129c2865a9ec37eda0031d04"
1032
+ integrity sha512-kRFftRoExRVXZlwUuay9iC824qmXPcQQVzAjbCCgjpXnkdMCJYBu2gTwAaFBzv8ewND6O8xFb3aELmEkh9zTzg==
1033
+ dependencies:
1034
+ colorette "^1.2.1"
1035
+ nanoid "^3.1.20"
1036
+ source-map "^0.6.1"
1037
+
1038
+ pretty-hrtime@^1.0.3:
1039
+ version "1.0.3"
1040
+ resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
1041
+ integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
1042
+
1043
+ read-cache@^1.0.0:
1044
+ version "1.0.0"
1045
+ resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
1046
+ integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=
1047
+ dependencies:
1048
+ pify "^2.3.0"
1049
+
1050
+ readdirp@~3.4.0:
1051
+ version "3.4.0"
1052
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada"
1053
+ integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==
1054
+ dependencies:
1055
+ picomatch "^2.2.1"
1056
+
1057
+ require-directory@^2.1.1:
1058
+ version "2.1.1"
1059
+ resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1060
+ integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
1061
+
1062
+ resolve-from@^3.0.0:
1063
+ version "3.0.0"
1064
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
1065
+ integrity sha1-six699nWiBvItuZTM17rywoYh0g=
1066
+
1067
+ resolve@^1.1.7:
1068
+ version "1.17.0"
1069
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
1070
+ integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
1071
+ dependencies:
1072
+ path-parse "^1.0.6"
1073
+
1074
+ resolve@^1.19.0:
1075
+ version "1.19.0"
1076
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
1077
+ integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
1078
+ dependencies:
1079
+ is-core-module "^2.1.0"
1080
+ path-parse "^1.0.6"
1081
+
1082
+ reusify@^1.0.4:
1083
+ version "1.0.4"
1084
+ resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1085
+ integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1086
+
1087
+ rollup@^2.35.1:
1088
+ version "2.36.1"
1089
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.36.1.tgz#2174f0c25c7b400d57b05628d0e732c7ae8d2178"
1090
+ integrity sha512-eAfqho8dyzuVvrGqpR0ITgEdq0zG2QJeWYh+HeuTbpcaXk8vNFc48B7bJa1xYosTCKx0CuW+447oQOW8HgBIZQ==
1091
+ optionalDependencies:
1092
+ fsevents "~2.1.2"
1093
+
1094
+ run-parallel@^1.1.9:
1095
+ version "1.1.9"
1096
+ resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
1097
+ integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==
1098
+
1099
+ slash@^3.0.0:
1100
+ version "3.0.0"
1101
+ resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
1102
+ integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1103
+
1104
+ source-map@^0.6.1:
1105
+ version "0.6.1"
1106
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
1107
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
1108
+
1109
+ sprintf-js@~1.0.2:
1110
+ version "1.0.3"
1111
+ resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1112
+ integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
1113
+
1114
+ string-width@^4.1.0, string-width@^4.2.0:
1115
+ version "4.2.0"
1116
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
1117
+ integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
1118
+ dependencies:
1119
+ emoji-regex "^8.0.0"
1120
+ is-fullwidth-code-point "^3.0.0"
1121
+ strip-ansi "^6.0.0"
1122
+
1123
+ strip-ansi@^6.0.0:
1124
+ version "6.0.0"
1125
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
1126
+ integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
1127
+ dependencies:
1128
+ ansi-regex "^5.0.0"
1129
+
1130
+ supports-color@^5.3.0:
1131
+ version "5.5.0"
1132
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1133
+ integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1134
+ dependencies:
1135
+ has-flag "^3.0.0"
1136
+
1137
+ supports-color@^6.1.0:
1138
+ version "6.1.0"
1139
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
1140
+ integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
1141
+ dependencies:
1142
+ has-flag "^3.0.0"
1143
+
1144
+ supports-color@^7.1.0:
1145
+ version "7.2.0"
1146
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1147
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1148
+ dependencies:
1149
+ has-flag "^4.0.0"
1150
+
1151
+ to-regex-range@^5.0.1:
1152
+ version "5.0.1"
1153
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1154
+ integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1155
+ dependencies:
1156
+ is-number "^7.0.0"
1157
+
1158
+ uniq@^1.0.1:
1159
+ version "1.0.1"
1160
+ resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
1161
+ integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
1162
+
1163
+ universalify@^1.0.0:
1164
+ version "1.0.0"
1165
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d"
1166
+ integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==
1167
+
1168
+ util-deprecate@^1.0.2:
1169
+ version "1.0.2"
1170
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1171
+ integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
1172
+
1173
+ vite@^2.0.0-beta.21:
1174
+ version "2.0.0-beta.21"
1175
+ resolved "https://registry.yarnpkg.com/vite/-/vite-2.0.0-beta.21.tgz#9a7233c93ed59c5b5de28c3a74f1e94b815d746e"
1176
+ integrity sha512-B6OhGHwh4DTkDBxZXtGhxmDkK75M3o0sKFz/cfZ2bdqxRze870sJgH66kPuYWjgSVDdPz0NTIKBaxrbcA8wwmw==
1177
+ dependencies:
1178
+ esbuild "^0.8.26"
1179
+ postcss "^8.2.1"
1180
+ resolve "^1.19.0"
1181
+ rollup "^2.35.1"
1182
+ optionalDependencies:
1183
+ fsevents "~2.1.2"
1184
+
1185
+ wrap-ansi@^7.0.0:
1186
+ version "7.0.0"
1187
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1188
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
1189
+ dependencies:
1190
+ ansi-styles "^4.0.0"
1191
+ string-width "^4.1.0"
1192
+ strip-ansi "^6.0.0"
1193
+
1194
+ y18n@^5.0.1:
1195
+ version "5.0.2"
1196
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.2.tgz#48218df5da2731b4403115c39a1af709c873f829"
1197
+ integrity sha512-CkwaeZw6dQgqgPGeTWKMXCRmMcBgETFlTml1+ZOO+q7kGst8NREJ+eWwFNPVUQ4QGdAaklbqCZHH6Zuep1RjiA==
1198
+
1199
+ yargs-parser@^20.0.0:
1200
+ version "20.2.1"
1201
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.1.tgz#28f3773c546cdd8a69ddae68116b48a5da328e77"
1202
+ integrity sha512-yYsjuSkjbLMBp16eaOt7/siKTjNVjMm3SoJnIg3sEh/JsvqVVDyjRKmaJV4cl+lNIgq6QEco2i3gDebJl7/vLA==
1203
+
1204
+ yargs@^16.0.0:
1205
+ version "16.0.3"
1206
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.0.3.tgz#7a919b9e43c90f80d4a142a89795e85399a7e54c"
1207
+ integrity sha512-6+nLw8xa9uK1BOEOykaiYAJVh6/CjxWXK/q9b5FpRgNslt8s22F2xMBqVIKgCRjNgGvGPBy8Vog7WN7yh4amtA==
1208
+ dependencies:
1209
+ cliui "^7.0.0"
1210
+ escalade "^3.0.2"
1211
+ get-caller-file "^2.0.5"
1212
+ require-directory "^2.1.1"
1213
+ string-width "^4.2.0"
1214
+ y18n "^5.0.1"
1215
+ yargs-parser "^20.0.0"