svelte-rails 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8dad830db778c7ee7f995adab22cd5e3777dc45ecd2d3a72ee8e8f6971bdb8da
4
- data.tar.gz: 1a0591a511234a4affc3a9083bdcec016667453f40518d1adeb7e7642f33810c
3
+ metadata.gz: c734452897163dbc3302a946b6e41ae9ba1e7d47e3da304f1b449e2f617b3b8f
4
+ data.tar.gz: 468aee084d30455be6428dc1cdcbf1ab5c80833099a481b3a10f44dd01bb0b00
5
5
  SHA512:
6
- metadata.gz: 6d8317c399d79c588d07595e97604278eb3d2ea073e4290c68cbb978fb2d9eb31aeda7e52af5f8fd529584f5864485ca349276dd65fd0d577899501f1b3de022
7
- data.tar.gz: ff2ca419374a2ef56c21c5da36c8662e0ffab238438262c2246051fe3a4016dda65aa65a98c00ea5078f9ea76ea0b727413e9e27c7e1200a75205b456c803bb3
6
+ metadata.gz: e01bba8c0e0d4981fc4348eb898e1da4dd29d5a7f1cf8f4cc0dfe72f0a86b1df1a607e52540b23a4ccb72c6c22a2ee126bedd8485ec682330d4f73e9886a8bd3
7
+ data.tar.gz: 8075f045e75e92484d69e01a5f5758a8139972e9f1e906723dd396d73f864e50e27d0e5a861670ee04099d67d6e107bda7808abeadde20a91fdbab4335e632fa
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- svelte-rails (0.3.2)
4
+ svelte-rails (0.3.3)
5
5
  execjs
6
6
  railties (>= 5.2)
7
7
 
@@ -71,7 +71,7 @@ GEM
71
71
  execjs (2.7.0)
72
72
  globalid (0.4.2)
73
73
  activesupport (>= 4.2.0)
74
- i18n (1.8.3)
74
+ i18n (1.8.4)
75
75
  concurrent-ruby (~> 1.0)
76
76
  loofah (2.6.0)
77
77
  crass (~> 1.0.2)
@@ -86,7 +86,7 @@ GEM
86
86
  mini_portile2 (2.4.0)
87
87
  minitest (5.14.1)
88
88
  nio4r (2.5.2)
89
- nokogiri (1.10.9)
89
+ nokogiri (1.10.10)
90
90
  mini_portile2 (~> 2.4.0)
91
91
  rack (2.2.3)
92
92
  rack-test (1.1.0)
@@ -142,10 +142,10 @@ GEM
142
142
  thread_safe (0.3.6)
143
143
  tzinfo (1.2.7)
144
144
  thread_safe (~> 0.1)
145
- websocket-driver (0.7.2)
145
+ websocket-driver (0.7.3)
146
146
  websocket-extensions (>= 0.1.0)
147
147
  websocket-extensions (0.1.5)
148
- zeitwerk (2.3.1)
148
+ zeitwerk (2.4.0)
149
149
 
150
150
  PLATFORMS
151
151
  ruby
@@ -38,7 +38,7 @@ module Svelte
38
38
  end
39
39
 
40
40
  def install_svelte_ujs
41
- `yarn add svelte_ujs_ng`
41
+ `yarn add svelte_ujs_ng svelte-preprocess`
42
42
  end
43
43
 
44
44
  private
@@ -1,10 +1,25 @@
1
+ const sveltePreprocess = require('svelte-preprocess')
2
+
3
+ const dev = process.env.RAILS_ENV !== 'production'
4
+
1
5
  module.exports = {
2
6
  test: /\.svelte$/,
3
- use: [{
4
- loader: 'svelte-loader',
5
- options: {
6
- hotReload: true,
7
- hydratable: true
7
+ use: [
8
+ {
9
+ loader: 'babel-loader',
10
+ options: {
11
+ presets: ['@babel/preset-env'],
12
+ }
13
+ },
14
+ {
15
+ loader: 'svelte-loader',
16
+ options: {
17
+ dev,
18
+ hotReload: true,
19
+ hydratable: true,
20
+ emitCss: true,
21
+ preprocess: sveltePreprocess()
22
+ }
8
23
  }
9
- }],
24
+ ],
10
25
  }
@@ -1,5 +1,5 @@
1
1
  module Svelte
2
2
  module Rails
3
- VERSION = '0.3.2'
3
+ VERSION = '0.3.3'
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte_ujs_ng",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "Rails UJS for turbolinks and SSR of the svelte-rails gem",
5
5
  "license": "MIT",
6
6
  "author": "henning mueller <mail@nning.io>",
@@ -12,16 +12,14 @@
12
12
  "type": "git",
13
13
  "url": "git+https://github.com/nning/svelte-rails.git"
14
14
  },
15
-
16
15
  "main": "svelte_ujs/index.js",
17
16
  "exports": {
18
17
  "./": "./svelte_ujs/"
19
18
  },
20
-
21
19
  "devDependencies": {
22
20
  "@rails/webpacker": "4.2.2",
23
- "webpack-assets-manifest": "^3.1.1",
24
- "before-build-webpack": "^0.2.9"
21
+ "before-build-webpack": "^0.2.9",
22
+ "webpack-assets-manifest": "https://github.com/pustovalov/webpack-assets-manifest#build"
25
23
  },
26
24
  "resolutions": {
27
25
  "webpack-assets-manifest": "https://github.com/pustovalov/webpack-assets-manifest#build"
@@ -5,7 +5,7 @@ const WebpackBeforeBuildPlugin = require('before-build-webpack')
5
5
 
6
6
  // https://www.viget.com/articles/run-multiple-webpack-configs-sequentially/
7
7
  class WaitPlugin extends WebpackBeforeBuildPlugin {
8
- constructor(file, interval = 200, timeout = 10000) {
8
+ constructor(file, interval = 200, timeout = 30000) {
9
9
  const filePath = path.join(config.outputPath, file)
10
10
 
11
11
  try {
@@ -6,13 +6,13 @@ const WaitPlugin = require('./WaitPlugin')
6
6
  // https://github.com/webdeveric/webpack-assets-manifest/pull/59
7
7
  const WebpackAssetsManifest = require('webpack-assets-manifest')
8
8
 
9
- const env = process.env.NODE_ENV
9
+ const env = process.env.RAILS_ENV
10
10
  const Environment = require('@rails/webpacker/package/environments/' + env)
11
11
 
12
12
  function getSvelteEnvironments(clientLoader, serverLoader) {
13
13
  const clientEnvironment = new Environment()
14
14
  clientEnvironment.entry.delete('server_rendering')
15
- clientEnvironment.loaders.prepend('svelte', clientLoader)
15
+ clientEnvironment.loaders.insert('svelte', clientLoader, {before: 'babel'})
16
16
 
17
17
  // We need to set merge:true for generating the manifest.json
18
18
  clientEnvironment.plugins.delete('Manifest')
@@ -2,9 +2,9 @@ class SvelteRailsUJS {
2
2
  static serverRender(component_name, props) {
3
3
  const requireComponent = require.context('components', true)
4
4
  const bundle = requireComponent('./' + component_name).default
5
- const {html, css} = bundle.render(props)
5
+ const {html} = bundle.render(props)
6
6
 
7
- return `<style>${css.code}</style>` + html
7
+ return html
8
8
  }
9
9
 
10
10
  static start() {
data/test.sh ADDED
@@ -0,0 +1,29 @@
1
+ #!/bin/sh
2
+
3
+ set -e
4
+
5
+ nvm use --delete-prefix v14.5.0
6
+
7
+ rails new svelte-rails-test --webpack=svelte
8
+ cd svelte-rails-test
9
+
10
+ echo "gem 'svelte-rails', path: '../svelte-rails'" >> Gemfile
11
+ bundle
12
+
13
+ yes | rails svelte:install
14
+
15
+ sed -i 's/svelte_ujs_ng.*$/svelte_ujs_ng": "..\/svelte-rails",/g' package.json
16
+ yarn
17
+
18
+ # TODO This does not work in shell context, yet
19
+ rails g controller greetings show
20
+
21
+ cat <<EOF > app/views/greetings/show.html.erb
22
+ <%= svelte_component :Hello, {name: 'Test'}, {prerender: true} %>
23
+ EOF
24
+
25
+ rails s -d
26
+
27
+ xdg-open http://localhost:3000/greetings/show
28
+
29
+ kill `cat tmp/pids/server.pid`
data/yarn.lock CHANGED
@@ -10,44 +10,43 @@
10
10
  "@babel/highlight" "^7.10.4"
11
11
 
12
12
  "@babel/compat-data@^7.10.4":
13
- version "7.10.4"
14
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.4.tgz#706a6484ee6f910b719b696a9194f8da7d7ac241"
15
- integrity sha512-t+rjExOrSVvjQQXNp5zAIYDp00KjdvGl/TpDX5REPr0S9IAIPQMTilcfG6q8c0QFmj9lSTVySV2VTsyggvtNIw==
13
+ version "7.10.5"
14
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.5.tgz#d38425e67ea96b1480a3f50404d1bf85676301a6"
15
+ integrity sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw==
16
16
  dependencies:
17
17
  browserslist "^4.12.0"
18
18
  invariant "^2.2.4"
19
19
  semver "^5.5.0"
20
20
 
21
21
  "@babel/core@^7.7.2":
22
- version "7.10.4"
23
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d"
24
- integrity sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA==
22
+ version "7.10.5"
23
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330"
24
+ integrity sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==
25
25
  dependencies:
26
26
  "@babel/code-frame" "^7.10.4"
27
- "@babel/generator" "^7.10.4"
28
- "@babel/helper-module-transforms" "^7.10.4"
27
+ "@babel/generator" "^7.10.5"
28
+ "@babel/helper-module-transforms" "^7.10.5"
29
29
  "@babel/helpers" "^7.10.4"
30
- "@babel/parser" "^7.10.4"
30
+ "@babel/parser" "^7.10.5"
31
31
  "@babel/template" "^7.10.4"
32
- "@babel/traverse" "^7.10.4"
33
- "@babel/types" "^7.10.4"
32
+ "@babel/traverse" "^7.10.5"
33
+ "@babel/types" "^7.10.5"
34
34
  convert-source-map "^1.7.0"
35
35
  debug "^4.1.0"
36
36
  gensync "^1.0.0-beta.1"
37
37
  json5 "^2.1.2"
38
- lodash "^4.17.13"
38
+ lodash "^4.17.19"
39
39
  resolve "^1.3.2"
40
40
  semver "^5.4.1"
41
41
  source-map "^0.5.0"
42
42
 
43
- "@babel/generator@^7.10.4":
44
- version "7.10.4"
45
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243"
46
- integrity sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng==
43
+ "@babel/generator@^7.10.5":
44
+ version "7.10.5"
45
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz#1b903554bc8c583ee8d25f1e8969732e6b829a69"
46
+ integrity sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==
47
47
  dependencies:
48
- "@babel/types" "^7.10.4"
48
+ "@babel/types" "^7.10.5"
49
49
  jsesc "^2.5.1"
50
- lodash "^4.17.13"
51
50
  source-map "^0.5.0"
52
51
 
53
52
  "@babel/helper-annotate-as-pure@^7.10.4":
@@ -77,12 +76,12 @@
77
76
  semver "^5.5.0"
78
77
 
79
78
  "@babel/helper-create-class-features-plugin@^7.10.4":
80
- version "7.10.4"
81
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.4.tgz#2d4015d0136bd314103a70d84a7183e4b344a355"
82
- integrity sha512-9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ==
79
+ version "7.10.5"
80
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d"
81
+ integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==
83
82
  dependencies:
84
83
  "@babel/helper-function-name" "^7.10.4"
85
- "@babel/helper-member-expression-to-functions" "^7.10.4"
84
+ "@babel/helper-member-expression-to-functions" "^7.10.5"
86
85
  "@babel/helper-optimise-call-expression" "^7.10.4"
87
86
  "@babel/helper-plugin-utils" "^7.10.4"
88
87
  "@babel/helper-replace-supers" "^7.10.4"
@@ -98,13 +97,13 @@
98
97
  regexpu-core "^4.7.0"
99
98
 
100
99
  "@babel/helper-define-map@^7.10.4":
101
- version "7.10.4"
102
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.4.tgz#f037ad794264f729eda1889f4ee210b870999092"
103
- integrity sha512-nIij0oKErfCnLUCWaCaHW0Bmtl2RO9cN7+u2QT8yqTywgALKlyUVOvHDElh+b5DwVC6YB1FOYFOTWcN/+41EDA==
100
+ version "7.10.5"
101
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
102
+ integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
104
103
  dependencies:
105
104
  "@babel/helper-function-name" "^7.10.4"
106
- "@babel/types" "^7.10.4"
107
- lodash "^4.17.13"
105
+ "@babel/types" "^7.10.5"
106
+ lodash "^4.17.19"
108
107
 
109
108
  "@babel/helper-explode-assignable-expression@^7.10.4":
110
109
  version "7.10.4"
@@ -137,12 +136,12 @@
137
136
  dependencies:
138
137
  "@babel/types" "^7.10.4"
139
138
 
140
- "@babel/helper-member-expression-to-functions@^7.10.4":
141
- version "7.10.4"
142
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4"
143
- integrity sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A==
139
+ "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5":
140
+ version "7.10.5"
141
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz#172f56e7a63e78112f3a04055f24365af702e7ee"
142
+ integrity sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA==
144
143
  dependencies:
145
- "@babel/types" "^7.10.4"
144
+ "@babel/types" "^7.10.5"
146
145
 
147
146
  "@babel/helper-module-imports@^7.10.4":
148
147
  version "7.10.4"
@@ -151,18 +150,18 @@
151
150
  dependencies:
152
151
  "@babel/types" "^7.10.4"
153
152
 
154
- "@babel/helper-module-transforms@^7.10.4":
155
- version "7.10.4"
156
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.4.tgz#ca1f01fdb84e48c24d7506bb818c961f1da8805d"
157
- integrity sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q==
153
+ "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5":
154
+ version "7.10.5"
155
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz#120c271c0b3353673fcdfd8c053db3c544a260d6"
156
+ integrity sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA==
158
157
  dependencies:
159
158
  "@babel/helper-module-imports" "^7.10.4"
160
159
  "@babel/helper-replace-supers" "^7.10.4"
161
160
  "@babel/helper-simple-access" "^7.10.4"
162
161
  "@babel/helper-split-export-declaration" "^7.10.4"
163
162
  "@babel/template" "^7.10.4"
164
- "@babel/types" "^7.10.4"
165
- lodash "^4.17.13"
163
+ "@babel/types" "^7.10.5"
164
+ lodash "^4.17.19"
166
165
 
167
166
  "@babel/helper-optimise-call-expression@^7.10.4":
168
167
  version "7.10.4"
@@ -177,11 +176,11 @@
177
176
  integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
178
177
 
179
178
  "@babel/helper-regex@^7.10.4":
180
- version "7.10.4"
181
- resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.4.tgz#59b373daaf3458e5747dece71bbaf45f9676af6d"
182
- integrity sha512-inWpnHGgtg5NOF0eyHlC0/74/VkdRITY9dtTpB2PrxKKn+AkVMRiZz/Adrx+Ssg+MLDesi2zohBW6MVq6b4pOQ==
179
+ version "7.10.5"
180
+ resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0"
181
+ integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==
183
182
  dependencies:
184
- lodash "^4.17.13"
183
+ lodash "^4.17.19"
185
184
 
186
185
  "@babel/helper-remap-async-to-generator@^7.10.4":
187
186
  version "7.10.4"
@@ -252,15 +251,15 @@
252
251
  chalk "^2.0.0"
253
252
  js-tokens "^4.0.0"
254
253
 
255
- "@babel/parser@^7.10.4":
256
- version "7.10.4"
257
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64"
258
- integrity sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA==
254
+ "@babel/parser@^7.10.4", "@babel/parser@^7.10.5":
255
+ version "7.10.5"
256
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b"
257
+ integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==
259
258
 
260
259
  "@babel/plugin-proposal-async-generator-functions@^7.10.4":
261
- version "7.10.4"
262
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.4.tgz#4b65abb3d9bacc6c657aaa413e56696f9f170fc6"
263
- integrity sha512-MJbxGSmejEFVOANAezdO39SObkURO5o/8b6fSH6D1pi9RZQt+ldppKPXfqgUWpSQ9asM6xaSaSJIaeWMDRP0Zg==
260
+ version "7.10.5"
261
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558"
262
+ integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==
264
263
  dependencies:
265
264
  "@babel/helper-plugin-utils" "^7.10.4"
266
265
  "@babel/helper-remap-async-to-generator" "^7.10.4"
@@ -441,12 +440,11 @@
441
440
  "@babel/helper-plugin-utils" "^7.10.4"
442
441
 
443
442
  "@babel/plugin-transform-block-scoping@^7.10.4":
444
- version "7.10.4"
445
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.4.tgz#a670d1364bb5019a621b9ea2001482876d734787"
446
- integrity sha512-J3b5CluMg3hPUii2onJDRiaVbPtKFPLEaV5dOPY5OeAbDi1iU/UbbFFTgwb7WnanaDy7bjU35kc26W3eM5Qa0A==
443
+ version "7.10.5"
444
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz#b81b8aafefbfe68f0f65f7ef397b9ece68a6037d"
445
+ integrity sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg==
447
446
  dependencies:
448
447
  "@babel/helper-plugin-utils" "^7.10.4"
449
- lodash "^4.17.13"
450
448
 
451
449
  "@babel/plugin-transform-classes@^7.10.4":
452
450
  version "7.10.4"
@@ -529,11 +527,11 @@
529
527
  "@babel/helper-plugin-utils" "^7.10.4"
530
528
 
531
529
  "@babel/plugin-transform-modules-amd@^7.10.4":
532
- version "7.10.4"
533
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.4.tgz#cb407c68b862e4c1d13a2fc738c7ec5ed75fc520"
534
- integrity sha512-3Fw+H3WLUrTlzi3zMiZWp3AR4xadAEMv6XRCYnd5jAlLM61Rn+CRJaZMaNvIpcJpQ3vs1kyifYvEVPFfoSkKOA==
530
+ version "7.10.5"
531
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1"
532
+ integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==
535
533
  dependencies:
536
- "@babel/helper-module-transforms" "^7.10.4"
534
+ "@babel/helper-module-transforms" "^7.10.5"
537
535
  "@babel/helper-plugin-utils" "^7.10.4"
538
536
  babel-plugin-dynamic-import-node "^2.3.3"
539
537
 
@@ -548,12 +546,12 @@
548
546
  babel-plugin-dynamic-import-node "^2.3.3"
549
547
 
550
548
  "@babel/plugin-transform-modules-systemjs@^7.10.4":
551
- version "7.10.4"
552
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.4.tgz#8f576afd943ac2f789b35ded0a6312f929c633f9"
553
- integrity sha512-Tb28LlfxrTiOTGtZFsvkjpyjCl9IoaRI52AEU/VIwOwvDQWtbNJsAqTXzh+5R7i74e/OZHH2c2w2fsOqAfnQYQ==
549
+ version "7.10.5"
550
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85"
551
+ integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==
554
552
  dependencies:
555
553
  "@babel/helper-hoist-variables" "^7.10.4"
556
- "@babel/helper-module-transforms" "^7.10.4"
554
+ "@babel/helper-module-transforms" "^7.10.5"
557
555
  "@babel/helper-plugin-utils" "^7.10.4"
558
556
  babel-plugin-dynamic-import-node "^2.3.3"
559
557
 
@@ -588,9 +586,9 @@
588
586
  "@babel/helper-replace-supers" "^7.10.4"
589
587
 
590
588
  "@babel/plugin-transform-parameters@^7.10.4":
591
- version "7.10.4"
592
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.4.tgz#7b4d137c87ea7adc2a0f3ebf53266871daa6fced"
593
- integrity sha512-RurVtZ/D5nYfEg0iVERXYKEgDFeesHrHfx8RT05Sq57ucj2eOYAP6eu5fynL4Adju4I/mP/I6SO0DqNWAXjfLQ==
589
+ version "7.10.5"
590
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a"
591
+ integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==
594
592
  dependencies:
595
593
  "@babel/helper-get-function-arity" "^7.10.4"
596
594
  "@babel/helper-plugin-utils" "^7.10.4"
@@ -617,9 +615,9 @@
617
615
  "@babel/helper-plugin-utils" "^7.10.4"
618
616
 
619
617
  "@babel/plugin-transform-runtime@^7.6.2":
620
- version "7.10.4"
621
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.4.tgz#594fb53453ea1b6f0779cceb48ce0718a447feb7"
622
- integrity sha512-8ULlGv8p+Vuxu+kz2Y1dk6MYS2b/Dki+NO6/0ZlfSj5tMalfDL7jI/o/2a+rrWLqSXvnadEqc2WguB4gdQIxZw==
618
+ version "7.10.5"
619
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.5.tgz#3b39b7b24830e0c2d8ff7a4489fe5cf99fbace86"
620
+ integrity sha512-tV4V/FjElJ9lQtyjr5xD2IFFbgY46r7EeVu5a8CpEKT5laheHKSlFeHjpkPppW3PqzGLAuv5k2qZX5LgVZIX5w==
623
621
  dependencies:
624
622
  "@babel/helper-module-imports" "^7.10.4"
625
623
  "@babel/helper-plugin-utils" "^7.10.4"
@@ -649,9 +647,9 @@
649
647
  "@babel/helper-regex" "^7.10.4"
650
648
 
651
649
  "@babel/plugin-transform-template-literals@^7.10.4":
652
- version "7.10.4"
653
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.4.tgz#e6375407b30fcb7fcfdbba3bb98ef3e9d36df7bc"
654
- integrity sha512-4NErciJkAYe+xI5cqfS8pV/0ntlY5N5Ske/4ImxAVX7mk9Rxt2bwDTGv1Msc2BRJvWQcmYEC+yoMLdX22aE4VQ==
650
+ version "7.10.5"
651
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c"
652
+ integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==
655
653
  dependencies:
656
654
  "@babel/helper-annotate-as-pure" "^7.10.4"
657
655
  "@babel/helper-plugin-utils" "^7.10.4"
@@ -760,9 +758,9 @@
760
758
  esutils "^2.0.2"
761
759
 
762
760
  "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
763
- version "7.10.4"
764
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.4.tgz#a6724f1a6b8d2f6ea5236dbfe58c7d7ea9c5eb99"
765
- integrity sha512-UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw==
761
+ version "7.10.5"
762
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c"
763
+ integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==
766
764
  dependencies:
767
765
  regenerator-runtime "^0.13.4"
768
766
 
@@ -775,28 +773,28 @@
775
773
  "@babel/parser" "^7.10.4"
776
774
  "@babel/types" "^7.10.4"
777
775
 
778
- "@babel/traverse@^7.10.4":
779
- version "7.10.4"
780
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818"
781
- integrity sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q==
776
+ "@babel/traverse@^7.10.4", "@babel/traverse@^7.10.5":
777
+ version "7.10.5"
778
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564"
779
+ integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==
782
780
  dependencies:
783
781
  "@babel/code-frame" "^7.10.4"
784
- "@babel/generator" "^7.10.4"
782
+ "@babel/generator" "^7.10.5"
785
783
  "@babel/helper-function-name" "^7.10.4"
786
784
  "@babel/helper-split-export-declaration" "^7.10.4"
787
- "@babel/parser" "^7.10.4"
788
- "@babel/types" "^7.10.4"
785
+ "@babel/parser" "^7.10.5"
786
+ "@babel/types" "^7.10.5"
789
787
  debug "^4.1.0"
790
788
  globals "^11.1.0"
791
- lodash "^4.17.13"
789
+ lodash "^4.17.19"
792
790
 
793
- "@babel/types@^7.10.4", "@babel/types@^7.4.4":
794
- version "7.10.4"
795
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.4.tgz#369517188352e18219981efd156bfdb199fff1ee"
796
- integrity sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg==
791
+ "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.4.4":
792
+ version "7.10.5"
793
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15"
794
+ integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==
797
795
  dependencies:
798
796
  "@babel/helper-validator-identifier" "^7.10.4"
799
- lodash "^4.17.13"
797
+ lodash "^4.17.19"
800
798
  to-fast-properties "^2.0.0"
801
799
 
802
800
  "@csstools/convert-colors@^1.4.0":
@@ -1042,14 +1040,14 @@ ajv-errors@^1.0.0:
1042
1040
  integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
1043
1041
 
1044
1042
  ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
1045
- version "3.5.0"
1046
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.0.tgz#5c894537098785926d71e696114a53ce768ed773"
1047
- integrity sha512-eyoaac3btgU8eJlvh01En8OCKzRqlLe2G5jDsCr3RiE2uLGMEEB1aaGwVVpwR8M95956tGH6R+9edC++OvzaVw==
1043
+ version "3.5.2"
1044
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
1045
+ integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
1048
1046
 
1049
- ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5:
1050
- version "6.12.2"
1051
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd"
1052
- integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==
1047
+ ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.3:
1048
+ version "6.12.3"
1049
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706"
1050
+ integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==
1053
1051
  dependencies:
1054
1052
  fast-deep-equal "^3.1.1"
1055
1053
  fast-json-stable-stringify "^2.0.0"
@@ -1209,12 +1207,12 @@ atob@^2.1.2:
1209
1207
  integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
1210
1208
 
1211
1209
  autoprefixer@^9.6.1:
1212
- version "9.8.4"
1213
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.4.tgz#736f1012673a70fa3464671d78d41abd54512863"
1214
- integrity sha512-84aYfXlpUe45lvmS+HoAWKCkirI/sw4JK0/bTeeqgHYco3dcsOn0NqdejISjptsYwNji/21dnkDri9PsYKk89A==
1210
+ version "9.8.5"
1211
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.5.tgz#2c225de229ddafe1d1424c02791d0c3e10ccccaa"
1212
+ integrity sha512-C2p5KkumJlsTHoNv9w31NrBRgXhf6eCMteJuHZi2xhkgC+5Vm40MEtCKPhc0qdgAOhox0YPy1SQHTAky05UoKg==
1215
1213
  dependencies:
1216
1214
  browserslist "^4.12.0"
1217
- caniuse-lite "^1.0.30001087"
1215
+ caniuse-lite "^1.0.30001097"
1218
1216
  colorette "^1.2.0"
1219
1217
  normalize-range "^0.1.2"
1220
1218
  num2fraction "^1.2.2"
@@ -1440,12 +1438,12 @@ browserify-zlib@^0.2.0:
1440
1438
  pako "~1.0.5"
1441
1439
 
1442
1440
  browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.6.4, browserslist@^4.8.5:
1443
- version "4.12.2"
1444
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.2.tgz#76653d7e4c57caa8a1a28513e2f4e197dc11a711"
1445
- integrity sha512-MfZaeYqR8StRZdstAK9hCKDd2StvePCYp5rHzQCPicUjfFliDgmuaBNPHYUTpAywBN8+Wc/d7NYVFkO0aqaBUw==
1441
+ version "4.13.0"
1442
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d"
1443
+ integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ==
1446
1444
  dependencies:
1447
- caniuse-lite "^1.0.30001088"
1448
- electron-to-chromium "^1.3.483"
1445
+ caniuse-lite "^1.0.30001093"
1446
+ electron-to-chromium "^1.3.488"
1449
1447
  escalade "^3.0.1"
1450
1448
  node-releases "^1.1.58"
1451
1449
 
@@ -1585,10 +1583,10 @@ caniuse-api@^3.0.0:
1585
1583
  lodash.memoize "^4.1.2"
1586
1584
  lodash.uniq "^4.5.0"
1587
1585
 
1588
- caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001087, caniuse-lite@^1.0.30001088:
1589
- version "1.0.30001093"
1590
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001093.tgz#833e80f64b1a0455cbceed2a4a3baf19e4abd312"
1591
- integrity sha512-0+ODNoOjtWD5eS9aaIpf4K0gQqZfILNY4WSNuYzeT1sXni+lMrrVjc0odEobJt6wrODofDZUX8XYi/5y7+xl8g==
1586
+ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001097:
1587
+ version "1.0.30001109"
1588
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001109.tgz#a9f3f26a0c3753b063d7acbb48dfb9c0e46f2b19"
1589
+ integrity sha512-4JIXRodHzdS3HdK8nSgIqXYLExOvG+D2/EenSvcub2Kp3QEADjo2v2oUn5g0n0D+UNwG9BtwKOyGcSq2qvQXvQ==
1592
1590
 
1593
1591
  case-sensitive-paths-webpack-plugin@^2.2.0:
1594
1592
  version "2.3.0"
@@ -1639,10 +1637,10 @@ chokidar@^2.1.8:
1639
1637
  optionalDependencies:
1640
1638
  fsevents "^1.2.7"
1641
1639
 
1642
- chokidar@^3.4.0:
1643
- version "3.4.0"
1644
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8"
1645
- integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==
1640
+ chokidar@^3.4.1:
1641
+ version "3.4.1"
1642
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.1.tgz#e905bdecf10eaa0a0b1db0c664481cc4cbc22ba1"
1643
+ integrity sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g==
1646
1644
  dependencies:
1647
1645
  anymatch "~3.1.1"
1648
1646
  braces "~3.0.2"
@@ -1763,9 +1761,9 @@ color@^3.0.0:
1763
1761
  color-string "^1.5.2"
1764
1762
 
1765
1763
  colorette@^1.2.0:
1766
- version "1.2.0"
1767
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.0.tgz#45306add826d196e8c87236ac05d797f25982e63"
1768
- integrity sha512-soRSroY+OF/8OdA3PTQXwaDJeMc7TfknKKrxeSCencL2a4+Tx5zhxmmv7hdpCjhKBjehzp8+bwe/T68K0hpIjw==
1764
+ version "1.2.1"
1765
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
1766
+ integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
1769
1767
 
1770
1768
  combined-stream@^1.0.6, combined-stream@~1.0.6:
1771
1769
  version "1.0.8"
@@ -2301,10 +2299,10 @@ ecc-jsbn@~0.1.1:
2301
2299
  jsbn "~0.1.0"
2302
2300
  safer-buffer "^2.1.0"
2303
2301
 
2304
- electron-to-chromium@^1.3.483:
2305
- version "1.3.486"
2306
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.486.tgz#90856e6c9f488079225cf5a0b4d4af6c241e0965"
2307
- integrity sha512-fmnACh6Jiuagm9tAfEZNe6QrwvOYAC5y0BwzoEOGCsbqriKOCaafXf3lsIvL55xa75Jmg4oboI7f5tMuoXrjNg==
2302
+ electron-to-chromium@^1.3.488:
2303
+ version "1.3.514"
2304
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.514.tgz#107499c28cb3c09fe6a863c19fc2202d5d9e8e41"
2305
+ integrity sha512-8vb8zKIeGlZigeDzNWWthmGeLzo5CC43Lc+CZshMs7UXFVMPNLtXJGa/txedpu3OJFrXXVheBwp9PqOJJlHQ8w==
2308
2306
 
2309
2307
  elliptic@^6.0.0, elliptic@^6.5.2:
2310
2308
  version "6.5.3"
@@ -2336,10 +2334,10 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0:
2336
2334
  dependencies:
2337
2335
  once "^1.4.0"
2338
2336
 
2339
- enhanced-resolve@^4.1.0, enhanced-resolve@^4.1.1:
2340
- version "4.2.0"
2341
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.2.0.tgz#5d43bda4a0fd447cb0ebbe71bef8deff8805ad0d"
2342
- integrity sha512-S7eiFb/erugyd1rLb6mQ3Vuq+EXHv5cpCkNqqIkYkBgN2QdFnyCZzFBleqwGEx4lgNGYij81BWnCrFNK7vxvjQ==
2337
+ enhanced-resolve@^4.1.1, enhanced-resolve@^4.3.0:
2338
+ version "4.3.0"
2339
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126"
2340
+ integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==
2343
2341
  dependencies:
2344
2342
  graceful-fs "^4.1.2"
2345
2343
  memory-fs "^0.5.0"
@@ -2391,9 +2389,9 @@ es-to-primitive@^1.2.1:
2391
2389
  is-symbol "^1.0.2"
2392
2390
 
2393
2391
  escalade@^3.0.1:
2394
- version "3.0.1"
2395
- resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.1.tgz#52568a77443f6927cd0ab9c73129137533c965ed"
2396
- integrity sha512-DR6NO3h9niOT+MZs7bjxlj2a1k+POu5RN8CLTPX2+i78bRi9eLe7+0zXgUHMnGXWybYcL61E9hGhPKqedy8tQA==
2392
+ version "3.0.2"
2393
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4"
2394
+ integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==
2397
2395
 
2398
2396
  escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
2399
2397
  version "1.0.5"
@@ -2431,9 +2429,9 @@ esutils@^2.0.2:
2431
2429
  integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
2432
2430
 
2433
2431
  events@^3.0.0:
2434
- version "3.1.0"
2435
- resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59"
2436
- integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==
2432
+ version "3.2.0"
2433
+ resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
2434
+ integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==
2437
2435
 
2438
2436
  evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
2439
2437
  version "1.0.3"
@@ -2841,11 +2839,11 @@ har-schema@^2.0.0:
2841
2839
  integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
2842
2840
 
2843
2841
  har-validator@~5.1.3:
2844
- version "5.1.3"
2845
- resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
2846
- integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
2842
+ version "5.1.5"
2843
+ resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
2844
+ integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
2847
2845
  dependencies:
2848
- ajv "^6.5.5"
2846
+ ajv "^6.12.3"
2849
2847
  har-schema "^2.0.0"
2850
2848
 
2851
2849
  has-ansi@^2.0.0:
@@ -3378,9 +3376,9 @@ jest-worker@^25.4.0:
3378
3376
  supports-color "^7.0.0"
3379
3377
 
3380
3378
  js-base64@^2.1.8:
3381
- version "2.6.2"
3382
- resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.2.tgz#cf9301bc5cc756892a9a6c8d7138322e5944fb0d"
3383
- integrity sha512-1hgLrLIrmCgZG+ID3VoLNLOSwjGnoZa8tyrUdEteMeIzsT6PH7PMLyUvbDwzNE56P3PNxyvuIOx4Uh2E5rzQIw==
3379
+ version "2.6.3"
3380
+ resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.3.tgz#7afdb9b57aa7717e15d370b66e8f36a9cb835dc3"
3381
+ integrity sha512-fiUvdfCaAXoQTHdKMgTvg6IkecXDcVz6V5rlftUTclF9IKBjMizvSdQaCl/z/6TApDeby5NL+axYou3i0mu1Pg==
3384
3382
 
3385
3383
  "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
3386
3384
  version "4.0.0"
@@ -3592,10 +3590,10 @@ lodash.uniq@^4.5.0:
3592
3590
  resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
3593
3591
  integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
3594
3592
 
3595
- lodash@^4.0.0, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.5, lodash@~4.17.10:
3596
- version "4.17.15"
3597
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
3598
- integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
3593
+ lodash@^4.0.0, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.5, lodash@~4.17.10:
3594
+ version "4.17.19"
3595
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
3596
+ integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
3599
3597
 
3600
3598
  loose-envify@^1.0.0:
3601
3599
  version "1.4.0"
@@ -3801,9 +3799,9 @@ minipass-flush@^1.0.5:
3801
3799
  minipass "^3.0.0"
3802
3800
 
3803
3801
  minipass-pipeline@^1.2.2:
3804
- version "1.2.3"
3805
- resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34"
3806
- integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ==
3802
+ version "1.2.4"
3803
+ resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
3804
+ integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
3807
3805
  dependencies:
3808
3806
  minipass "^3.0.0"
3809
3807
 
@@ -3890,9 +3888,9 @@ nanomatch@^1.2.9:
3890
3888
  to-regex "^3.0.1"
3891
3889
 
3892
3890
  neo-async@^2.5.0, neo-async@^2.6.1:
3893
- version "2.6.1"
3894
- resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
3895
- integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
3891
+ version "2.6.2"
3892
+ resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
3893
+ integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
3896
3894
 
3897
3895
  nice-try@^1.0.4:
3898
3896
  version "1.0.5"
@@ -3947,9 +3945,9 @@ node-libs-browser@^2.2.1:
3947
3945
  vm-browserify "^1.0.1"
3948
3946
 
3949
3947
  node-releases@^1.1.58:
3950
- version "1.1.58"
3951
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.58.tgz#8ee20eef30fa60e52755fcc0942def5a734fe935"
3952
- integrity sha512-NxBudgVKiRh/2aPWMgPR7bPTX0VPmGx5QBwCtdHitnqFE5/O8DeBXuIMH1nwNnw/aMo6AjOrpsHzfY3UbUJ7yg==
3948
+ version "1.1.60"
3949
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084"
3950
+ integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==
3953
3951
 
3954
3952
  node-sass@^4.13.0:
3955
3953
  version "4.14.1"
@@ -4241,9 +4239,9 @@ parse-json@^4.0.0:
4241
4239
  json-parse-better-errors "^1.0.1"
4242
4240
 
4243
4241
  parse-json@^5.0.0:
4244
- version "5.0.0"
4245
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
4246
- integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
4242
+ version "5.0.1"
4243
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878"
4244
+ integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ==
4247
4245
  dependencies:
4248
4246
  "@babel/code-frame" "^7.0.0"
4249
4247
  error-ex "^1.3.1"
@@ -4715,14 +4713,14 @@ postcss-modules-extract-imports@^2.0.0:
4715
4713
  postcss "^7.0.5"
4716
4714
 
4717
4715
  postcss-modules-local-by-default@^3.0.2:
4718
- version "3.0.2"
4719
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915"
4720
- integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==
4716
+ version "3.0.3"
4717
+ resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
4718
+ integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
4721
4719
  dependencies:
4722
4720
  icss-utils "^4.1.1"
4723
- postcss "^7.0.16"
4721
+ postcss "^7.0.32"
4724
4722
  postcss-selector-parser "^6.0.2"
4725
- postcss-value-parser "^4.0.0"
4723
+ postcss-value-parser "^4.1.0"
4726
4724
 
4727
4725
  postcss-modules-scope@^2.2.0:
4728
4726
  version "2.2.0"
@@ -5011,7 +5009,7 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.2.3:
5011
5009
  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
5012
5010
  integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
5013
5011
 
5014
- postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
5012
+ postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
5015
5013
  version "4.1.0"
5016
5014
  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
5017
5015
  integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
@@ -5025,7 +5023,7 @@ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
5025
5023
  indexes-of "^1.0.1"
5026
5024
  uniq "^1.0.1"
5027
5025
 
5028
- postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
5026
+ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
5029
5027
  version "7.0.32"
5030
5028
  resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d"
5031
5029
  integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==
@@ -5247,9 +5245,9 @@ regenerate@^1.4.0:
5247
5245
  integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==
5248
5246
 
5249
5247
  regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4:
5250
- version "0.13.5"
5251
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
5252
- integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
5248
+ version "0.13.7"
5249
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
5250
+ integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
5253
5251
 
5254
5252
  regenerator-transform@^0.14.2:
5255
5253
  version "0.14.5"
@@ -6288,19 +6286,20 @@ watchpack-chokidar2@^2.0.0:
6288
6286
  dependencies:
6289
6287
  chokidar "^2.1.8"
6290
6288
 
6291
- watchpack@^1.6.1:
6292
- version "1.7.2"
6293
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa"
6294
- integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g==
6289
+ watchpack@^1.7.4:
6290
+ version "1.7.4"
6291
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.4.tgz#6e9da53b3c80bb2d6508188f5b200410866cd30b"
6292
+ integrity sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg==
6295
6293
  dependencies:
6296
6294
  graceful-fs "^4.1.2"
6297
6295
  neo-async "^2.5.0"
6298
6296
  optionalDependencies:
6299
- chokidar "^3.4.0"
6297
+ chokidar "^3.4.1"
6300
6298
  watchpack-chokidar2 "^2.0.0"
6301
6299
 
6302
6300
  webpack-assets-manifest@^3.1.1, "webpack-assets-manifest@https://github.com/pustovalov/webpack-assets-manifest#build":
6303
6301
  version "3.1.1"
6302
+ uid "0867d168ac26b979d65dfc706cbf691ceead51ac"
6304
6303
  resolved "https://github.com/pustovalov/webpack-assets-manifest#0867d168ac26b979d65dfc706cbf691ceead51ac"
6305
6304
  dependencies:
6306
6305
  chalk "^2.0"
@@ -6337,9 +6336,9 @@ webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-
6337
6336
  source-map "~0.6.1"
6338
6337
 
6339
6338
  webpack@^4.41.2:
6340
- version "4.43.0"
6341
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6"
6342
- integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g==
6339
+ version "4.44.1"
6340
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.1.tgz#17e69fff9f321b8f117d1fda714edfc0b939cc21"
6341
+ integrity sha512-4UOGAohv/VGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ==
6343
6342
  dependencies:
6344
6343
  "@webassemblyjs/ast" "1.9.0"
6345
6344
  "@webassemblyjs/helper-module-context" "1.9.0"
@@ -6349,7 +6348,7 @@ webpack@^4.41.2:
6349
6348
  ajv "^6.10.2"
6350
6349
  ajv-keywords "^3.4.1"
6351
6350
  chrome-trace-event "^1.0.2"
6352
- enhanced-resolve "^4.1.0"
6351
+ enhanced-resolve "^4.3.0"
6353
6352
  eslint-scope "^4.0.3"
6354
6353
  json-parse-better-errors "^1.0.2"
6355
6354
  loader-runner "^2.4.0"
@@ -6362,7 +6361,7 @@ webpack@^4.41.2:
6362
6361
  schema-utils "^1.0.0"
6363
6362
  tapable "^1.1.3"
6364
6363
  terser-webpack-plugin "^1.4.3"
6365
- watchpack "^1.6.1"
6364
+ watchpack "^1.7.4"
6366
6365
  webpack-sources "^1.4.1"
6367
6366
 
6368
6367
  which-module@^2.0.0:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: svelte-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - henning mueller
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-10 00:00:00.000000000 Z
11
+ date: 2020-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -96,6 +96,7 @@ files:
96
96
  - svelte_ujs/WaitPlugin.js
97
97
  - svelte_ujs/getSvelteEnvironments.js
98
98
  - svelte_ujs/index.js
99
+ - test.sh
99
100
  - yarn.lock
100
101
  homepage: https://github.com/nning/svelte-rails
101
102
  licenses: