webpacker-svelte 0.0.0 → 1.0.0

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: 367ec4a01cb5378b9fc6eb159b4078d4d642d59b853d9fb8dda65a9c3e11c15f
4
- data.tar.gz: e7801b82d78d0e9aa494b875e183deefc1476e0d4f5563325ded4ef3768ebd10
3
+ metadata.gz: 544783cd3a0e19608681b84730ddd00d90e73a028198a60adde2dae37e5dbad9
4
+ data.tar.gz: 9a153f721c1ef8aef7cc0e6510a83442aa46f54f0a987a0a6cc98cd38ddce137
5
5
  SHA512:
6
- metadata.gz: cb0a7d64022715e25ed594e8f58937c0fb35ebbce055c6f45d0b34eea98624f60f759e0840e60f4317b90367d11accf60281d57653b0b0c3c784b60df26b6673
7
- data.tar.gz: 0d94da959a590b3d7030f2e3c568d7cdc5d43155e3b252a5f720d5c695c41346128354184615325a99fa2c65e8eccb81ebcb2e2a9bfbf1c2018f743513fe2f17
6
+ metadata.gz: c50babb053b9f4bb88651165c1466726055e1afd513755e956209f8749677b4c0537688742a6fd36a12a13e1c87cdd68b988901b2362f879aa1b4762d5c4b6ff
7
+ data.tar.gz: 3165e50b45e84b1d6fee163baed6080c1a917f6832774504172a466c8b79eb1bb0622677768e6027e308b0ae46c8eaf396b592ac14ac7e6c0a850286cc67467f
data/.gitignore CHANGED
@@ -8,7 +8,7 @@ node_modules/
8
8
  /spec/reports/
9
9
  /tmp/
10
10
 
11
- /javascript/webpacker_svelte-npm-module/dist/*.js
11
+ /javascript/webpacker_svelte-npm-module/dist/*
12
12
 
13
13
  test/example_app/log/*
14
14
  test/example_app/tmp/*
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 2.6.3
data/CHANGELOG.md CHANGED
@@ -5,7 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
- ## [Unreleased]
8
+ ## [1.0.0]
9
+
10
+ ### Changed
11
+
12
+ - There haven't been any bugs reported, so this can be considered stable. Bump version to 1.0.0.
13
+ - rename main branch from `master` to `main`
14
+
15
+ ## [0.1.0]
16
+
17
+ ### Changed
18
+
19
+ - Used rollup and lodash-modularized packages for smaller builds
9
20
 
10
21
  ## [0.0.0]
11
22
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- webpacker-svelte (0.0.0)
4
+ webpacker-svelte (1.0.0)
5
5
  webpacker
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,30 +1,34 @@
1
1
  # Webpacker-Svelte [![CircleCI](https://circleci.com/gh/will-wow/webpacker-svelte.svg?style=svg)](https://circleci.com/gh/will-wow/webpacker-svelte)
2
2
 
3
- _**Note:** This is the documentation for the Git master branch. Documentation for the latest release (0.0.0) is [available here](https://github.com/will-wow/webpacker-svelte/tree/v0.0.0)._
4
-
5
3
  Webpacker-Svelte makes it easy to use [Svelte](https://svelte.dev) with [Webpacker](https://github.com/rails/webpacker) in your Rails applications.
6
4
 
7
5
  This is a port of [@renchap](https://github.com/renchap)'s excellent [webpacker-react](https://github.com/renchap/webpacker-react).
8
6
 
9
7
  It supports Webpacker 1.2+.
10
8
 
11
- An example application is available: https://github.com/will-wow/svelte-on-rails/
9
+ An example application is available: https://github.com/will-wow/contacts
10
+
11
+ For more information, see the [blog post](https://blog.carbonfive.com/2019/10/29/the-best-of-both-worlds-html-apps-svelte)
12
12
 
13
13
  ## Installation
14
14
 
15
15
  Your Rails application needs to use Webpacker and have the Svelte integration done. Please refer to their documentation documentation for this: https://github.com/rails/webpacker/blob/master/README.md#svelte
16
16
 
17
- First, you need to add the webpacker-svelte gem to your Rails app Gemfile:
17
+ First, you need to add the [webpacker-svelte](https://rubygems.org/gems/webpacker-svelte) gem to your Rails app Gemfile:
18
18
 
19
19
  ```ruby
20
- gem 'webpacker-svelte', "~> 0.0.0"
20
+ gem 'webpacker-svelte', "~> 1.0.0"
21
21
  ```
22
22
 
23
23
  Once done, run `bundle` to install the gem.
24
24
 
25
25
  Then you need to update your `package.json` file to include the `webpacker-svelte` NPM module:
26
26
 
27
- `./bin/yarn add webpacker-svelte`
27
+ ```bash
28
+ npm i webpacker-svelte
29
+ # Or
30
+ yarn add webpacker-svelte
31
+ ```
28
32
 
29
33
  You are now all set!
30
34
 
@@ -107,7 +111,7 @@ _Note: you need to have [Webpack process your code](https://github.com/rails/web
107
111
 
108
112
  ### Hot Module Replacement
109
113
 
110
- **HRM isn't working for Svelte3 yet. See: https://github.com/sveltejs/svelte-loader/issues/74**
114
+ **HMR may be working for Svelte3 now, but I haven't tested it. See: https://github.com/sveltejs/svelte-loader/issues/92**
111
115
 
112
116
  [HMR](https://webpack.js.org/concepts/hot-module-replacement/) allows to reload / add / remove modules live in the browser without
113
117
  reloading the page. This allows any change you make to your Svelte components to be applied as soon as you save,
@@ -125,8 +129,10 @@ preserving their current state.
125
129
  loader: "svelte-loader",
126
130
  options: {
127
131
  // HMR isn't supported for Svelte3 yet
128
- // https://github.com/sveltejs/svelte-loader/issues/74
129
- hotReload: true
132
+ // https://github.com/sveltejs/svelte-loader/issues/74
133
+ hotReload: false
134
+ // Emit css that webpacker can extract into a separate css file in production.
135
+ emitCss: true
130
136
  }
131
137
  }
132
138
  ]
@@ -139,9 +145,9 @@ preserving their current state.
139
145
 
140
146
  ## Development
141
147
 
142
- To work on this gem locally, you first need to clone and setup [the example application](https://github.com/will-wow/svelte-on-rails).
148
+ To work on this gem locally, may want to clone and setup [the example application](https://github.com/will-wow/contacts).
143
149
 
144
- Then you need to change the example app Gemfile to point to your local repository and run bundle afterwise:
150
+ Then you need to change the example app Gemfile to point to your local repository and run bundle afterwards:
145
151
 
146
152
  ```ruby
147
153
  gem 'webpacker-svelte', path: '~/code/webpacker-svelte/'
@@ -149,29 +155,37 @@ gem 'webpacker-svelte', path: '~/code/webpacker-svelte/'
149
155
 
150
156
  Finally, you need to tell Yarn to use your local copy of the NPM module in this application, using [`yarn link`](https://yarnpkg.com/en/docs/cli/link):
151
157
 
152
- ```
153
- $ cd ~/code/webpacker-svelte/javascript/webpacker_svelte-npm-module/
154
- $ yarn
155
- $ cd dist/
156
- $ yarn # compiles the code from src/ to dist/
158
+ ```bash
159
+ $ cd /path/to/webpacker-svelte/javascript/webpacker_svelte-npm-module/
160
+ $ yarn install
161
+ $ yarn build # compiles the code from src/ to dist/
157
162
  $ yarn link
158
163
  success Registered "webpacker-svelte".
159
164
  info You can now run `yarn link "webpacker-svelte"` in the projects where you want to use this module and it will be used instead.
160
- $ cd ~/code/svelte-on-rails/
165
+ $ cd /path/to/contacts/
161
166
  $ yarn link webpacker-svelte
162
167
  success Registered "webpacker-svelte".
168
+ $ yarn install
163
169
  ```
164
170
 
165
171
  After launching `./bin/webpack-watcher` and `./bin/rails server` in your example app directory, you can now change the Ruby or Javascript code in your local `webpacker-svelte` repository, and test it immediately using the example app.
166
172
 
167
173
  ## Testing
168
174
 
169
- If you changed the local javascript package, first ensure it is build (see above).
175
+ If you changed the local javascript package, first ensure it is built (see above).
176
+
177
+ You'll have to install chromedriver to run the tests:
178
+
179
+ ```bash
180
+ $ brew install --cask chromedriver
181
+ # Or
182
+ $ npm install -g chromedriver
183
+ ```
170
184
 
171
185
  To run the test suite:
172
186
 
173
187
  ```sh
174
- $ rake test
188
+ $ bundle execute rake test
175
189
  ```
176
190
 
177
191
  If you change the javascript code, please ensure there are no style errors before committing:
@@ -186,10 +200,6 @@ $ yarn lint
186
200
  Bug reports and pull requests are welcome on GitHub at https://github.com/will-wow/webpacker-svelte.
187
201
  Please feel free to open issues about your needs and features you would like to be added.
188
202
 
189
- ## Wishlist
190
-
191
- - [ ] server-side rendering (#3)
192
-
193
203
  ### Thanks
194
204
 
195
205
  All credit to [@renchap](https://github.com/renchap) for [webpacker-react](https://github.com/renchap/webpacker-react), this is just a light re-write of that repo to support Svelte!
@@ -1,7 +1,12 @@
1
1
  {
2
- "presets": [["env", {
3
- "targets": {
4
- "browsers": ["> 1%", "last 2 versions"]
5
- }
6
- }]]
2
+ "presets": [
3
+ [
4
+ "env",
5
+ {
6
+ "targets": {
7
+ "browsers": ["> 1%", "last 2 versions"]
8
+ }
9
+ }
10
+ ]
11
+ ]
7
12
  }
@@ -1,5 +1,15 @@
1
1
  module.exports = {
2
- extends: ['airbnb-base', 'prettier'],
2
+ parserOptions: {
3
+ ecmaVersion: 2019,
4
+ sourceType: 'module'
5
+ },
6
+ env: {
7
+ es6: true,
8
+ browser: true,
9
+ node: true,
10
+ jest: true
11
+ },
12
+ extends: ['eslint:recommended', 'prettier'],
3
13
  rules: {
4
14
  'comma-dangle': ['error', 'never'],
5
15
  'import/no-unresolved': 'off',
@@ -8,9 +18,5 @@ module.exports = {
8
18
  'no-console': 'off',
9
19
  'no-new': 'off',
10
20
  semi: ['error', 'never']
11
- },
12
- env: {
13
- browser: true,
14
- node: true
15
21
  }
16
22
  }
@@ -1,8 +1,27 @@
1
1
  {
2
- "name": "webpacker-svelte-build",
3
- "private": true,
2
+ "name": "webpacker-svelte",
3
+ "version": "1.0.0",
4
+ "description": "webpacker-svelte integration",
5
+ "homepage": "https://github.com/will-wow/webpacker-svelte",
6
+ "repository": "will-wow/webpacker-svelte",
7
+ "author": {
8
+ "name": "Will Ockelmann-Wagner",
9
+ "email": "will@willwow.dev"
10
+ },
11
+ "license": "MIT",
12
+ "main": "dist/webpacker-svelte.cjs.js",
13
+ "module": "dist/webpacker-svelte.js",
14
+ "keywords": [
15
+ "svelte",
16
+ "webpacker"
17
+ ],
18
+ "files": [
19
+ "dist/**/*",
20
+ "src/**/*"
21
+ ],
4
22
  "scripts": {
5
- "build": "babel src --out-dir dist",
23
+ "build": "rollup -c",
24
+ "prepublishOnly": "npm run lint",
6
25
  "lint": "npm-run-all -c lint:*",
7
26
  "lint:prettier": "prettier --check '**/*.{js,json,md,svelte}'",
8
27
  "lint:eslint": "eslint src/",
@@ -14,13 +33,19 @@
14
33
  "babel-cli": "^6.26.0",
15
34
  "babel-preset-env": "^1.7.0",
16
35
  "eslint": "^6.3.0",
17
- "eslint-config-airbnb-base": "^14.0.0",
18
36
  "eslint-config-prettier": "^6.2.0",
19
37
  "eslint-plugin-import": "^2.18.2",
20
38
  "npm-run-all": "^4.1.5",
21
- "prettier": "^1.18.2"
39
+ "prettier": "^1.18.2",
40
+ "rollup": "^1.21.2"
41
+ },
42
+ "peerDependencies": {
43
+ "svelte": ">= 3"
22
44
  },
23
45
  "dependencies": {
24
- "lodash": "^4.0.0"
46
+ "lodash.assign": "^4.2.0",
47
+ "lodash.intersection": "^4.4.0",
48
+ "lodash.keys": "^4.2.0",
49
+ "lodash.omit": "^4.5.0"
25
50
  }
26
51
  }
@@ -0,0 +1,17 @@
1
+ import pkg from './package.json'
2
+
3
+ export default {
4
+ input: './src/index.js',
5
+ output: [
6
+ {
7
+ file: pkg.main,
8
+ format: 'cjs',
9
+ sourcemap: true
10
+ },
11
+ {
12
+ file: pkg.module,
13
+ format: 'es',
14
+ sourcemap: true
15
+ }
16
+ ]
17
+ }
@@ -1,7 +1,7 @@
1
- import intersection from 'lodash/intersection'
2
- import keys from 'lodash/keys'
3
- import assign from 'lodash/assign'
4
- import omit from 'lodash/omit'
1
+ import intersection from 'lodash.intersection'
2
+ import keys from 'lodash.keys'
3
+ import assign from 'lodash.assign'
4
+ import omit from 'lodash.omit'
5
5
  import ujs from './ujs'
6
6
 
7
7
  const CLASS_ATTRIBUTE_NAME = 'data-svelte-component'
@@ -3,9 +3,9 @@
3
3
 
4
4
 
5
5
  "@babel/code-frame@^7.0.0":
6
- version "7.0.0"
7
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
8
- integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==
6
+ version "7.5.5"
7
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
8
+ integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
9
9
  dependencies:
10
10
  "@babel/highlight" "^7.0.0"
11
11
 
@@ -18,6 +18,16 @@
18
18
  esutils "^2.0.2"
19
19
  js-tokens "^4.0.0"
20
20
 
21
+ "@types/estree@0.0.39":
22
+ version "0.0.39"
23
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
24
+ integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
25
+
26
+ "@types/node@^12.7.4":
27
+ version "12.7.4"
28
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.4.tgz#64db61e0359eb5a8d99b55e05c729f130a678b04"
29
+ integrity sha512-W0+n1Y+gK/8G2P/piTkBBN38Qc5Q1ZSO6B5H3QmPCUewaiXOo2GCAWZ4ElZCcNhjJuBSUSLGFUJnmlCn5+nxOQ==
30
+
21
31
  abbrev@1:
22
32
  version "1.1.1"
23
33
  resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
@@ -33,7 +43,7 @@ acorn@^7.0.0:
33
43
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.0.0.tgz#26b8d1cd9a9b700350b71c0905546f64d1284e7a"
34
44
  integrity sha512-PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ==
35
45
 
36
- ajv@^6.10.0:
46
+ ajv@^6.10.0, ajv@^6.10.2:
37
47
  version "6.10.2"
38
48
  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52"
39
49
  integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
@@ -43,16 +53,6 @@ ajv@^6.10.0:
43
53
  json-schema-traverse "^0.4.1"
44
54
  uri-js "^4.2.2"
45
55
 
46
- ajv@^6.9.1:
47
- version "6.10.1"
48
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.1.tgz#ebf8d3af22552df9dd049bfbe50cc2390e823593"
49
- integrity sha512-w1YQaVGNC6t2UCPjEawK/vo/dG8OOrVtUmhBT1uJJYxbl5kU2Tj3v6LGqBcsysN1yhuCStJCCA3GqdvKY8sqXQ==
50
- dependencies:
51
- fast-deep-equal "^2.0.1"
52
- fast-json-stable-stringify "^2.0.0"
53
- json-schema-traverse "^0.4.1"
54
- uri-js "^4.2.2"
55
-
56
56
  ansi-escapes@^3.2.0:
57
57
  version "3.2.0"
58
58
  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
@@ -800,9 +800,9 @@ callsites@^3.0.0:
800
800
  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
801
801
 
802
802
  caniuse-lite@^1.0.30000844:
803
- version "1.0.30000981"
804
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000981.tgz#5b6828803362363e5a1deba2eb550185cf6cec8f"
805
- integrity sha512-JTByHj4DQgL2crHNMK6PibqAMrqqb/Vvh0JrsTJVSWG4VSUrT16EklkuRZofurlMjgA9e+zlCM4Y39F3kootMQ==
803
+ version "1.0.30000989"
804
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz#b9193e293ccf7e4426c5245134b8f2a56c0ac4b9"
805
+ integrity sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==
806
806
 
807
807
  chalk@^1.1.3:
808
808
  version "1.1.3"
@@ -912,11 +912,6 @@ concat-map@0.0.1:
912
912
  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
913
913
  integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
914
914
 
915
- confusing-browser-globals@^1.0.7:
916
- version "1.0.8"
917
- resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.8.tgz#93ffec1f82a6e2bf2bc36769cc3a92fa20e502f3"
918
- integrity sha512-lI7asCibVJ6Qd3FGU7mu4sfG4try4LX3+GVS+Gv8UlrEf2AeW57piecapnog2UHZSbcX/P/1UDWVaTsblowlZg==
919
-
920
915
  console-control-strings@^1.0.0, console-control-strings@~1.1.0:
921
916
  version "1.1.0"
922
917
  resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
@@ -1058,9 +1053,9 @@ doctrine@^3.0.0:
1058
1053
  esutils "^2.0.2"
1059
1054
 
1060
1055
  electron-to-chromium@^1.3.47:
1061
- version "1.3.188"
1062
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.188.tgz#e28e1afe4bb229989e280bfd3b395c7ec03c8b7a"
1063
- integrity sha512-tEQcughYIMj8WDMc59EGEtNxdGgwal/oLLTDw+NEqJRJwGflQvH3aiyiexrWeZOETP4/ko78PVr6gwNhdozvuQ==
1056
+ version "1.3.254"
1057
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.254.tgz#af9795b9b2af0729997331a033ddc767af758224"
1058
+ integrity sha512-7I5/OkgR6JKy6RFLJeru0kc0RMmmMu1UnkHBKInFKRrg1/4EQKIqOaUqITSww/SZ1LqWwp1qc/LLoIGy449eYw==
1064
1059
 
1065
1060
  emoji-regex@^7.0.1:
1066
1061
  version "7.0.3"
@@ -1074,22 +1069,10 @@ error-ex@^1.2.0, error-ex@^1.3.1:
1074
1069
  dependencies:
1075
1070
  is-arrayish "^0.2.1"
1076
1071
 
1077
- es-abstract@^1.12.0, es-abstract@^1.7.0:
1078
- version "1.13.0"
1079
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"
1080
- integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==
1081
- dependencies:
1082
- es-to-primitive "^1.2.0"
1083
- function-bind "^1.1.1"
1084
- has "^1.0.3"
1085
- is-callable "^1.1.4"
1086
- is-regex "^1.0.4"
1087
- object-keys "^1.0.12"
1088
-
1089
- es-abstract@^1.4.3:
1090
- version "1.14.0"
1091
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.14.0.tgz#f59d9d44278ea8f90c8ff3de1552537c2fd739b4"
1092
- integrity sha512-lri42nNq1tIohUuwFBYEM3wKwcrcJa78jukGDdWsuaNxTtxBFGFkKUQ15nc9J+ipje4mhbQR6JwABb4VvawR3A==
1072
+ es-abstract@^1.12.0, es-abstract@^1.4.3, es-abstract@^1.7.0:
1073
+ version "1.14.2"
1074
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.14.2.tgz#7ce108fad83068c8783c3cdf62e504e084d8c497"
1075
+ integrity sha512-DgoQmbpFNOofkjJtKwr87Ma5EW4Dc8fWhD0R+ndq7Oc456ivUfGOOP6oAZTTKl5/CcNMP+EN+e3/iUzgE0veZg==
1093
1076
  dependencies:
1094
1077
  es-to-primitive "^1.2.0"
1095
1078
  function-bind "^1.1.1"
@@ -1116,15 +1099,6 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1116
1099
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1117
1100
  integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1118
1101
 
1119
- eslint-config-airbnb-base@^14.0.0:
1120
- version "14.0.0"
1121
- resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.0.0.tgz#8a7bcb9643d13c55df4dd7444f138bf4efa61e17"
1122
- integrity sha512-2IDHobw97upExLmsebhtfoD3NAKhV4H0CJWP3Uprd/uk+cHuWYOczPVxQ8PxLFUAw7o3Th1RAU8u1DoUpr+cMA==
1123
- dependencies:
1124
- confusing-browser-globals "^1.0.7"
1125
- object.assign "^4.1.0"
1126
- object.entries "^1.1.0"
1127
-
1128
1102
  eslint-config-prettier@^6.2.0:
1129
1103
  version "6.2.0"
1130
1104
  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.2.0.tgz#80e0b8714e3f6868c4ac2a25fbf39c02e73527a7"
@@ -1141,9 +1115,9 @@ eslint-import-resolver-node@^0.3.2:
1141
1115
  resolve "^1.5.0"
1142
1116
 
1143
1117
  eslint-module-utils@^2.4.0:
1144
- version "2.4.0"
1145
- resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz#8b93499e9b00eab80ccb6614e69f03678e84e09a"
1146
- integrity sha512-14tltLm38Eu3zS+mt0KvILC3q8jyIAH518MlG+HO0p+yK885Lb1UHTY/UgR91eOyGdmxAPb+OLoW4znqIT6Ndw==
1118
+ version "2.4.1"
1119
+ resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz#7b4675875bf96b0dbf1b21977456e5bb1f5e018c"
1120
+ integrity sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw==
1147
1121
  dependencies:
1148
1122
  debug "^2.6.8"
1149
1123
  pkg-dir "^2.0.0"
@@ -1180,12 +1154,7 @@ eslint-utils@^1.4.2:
1180
1154
  dependencies:
1181
1155
  eslint-visitor-keys "^1.0.0"
1182
1156
 
1183
- eslint-visitor-keys@^1.0.0:
1184
- version "1.0.0"
1185
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
1186
- integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
1187
-
1188
- eslint-visitor-keys@^1.1.0:
1157
+ eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
1189
1158
  version "1.1.0"
1190
1159
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
1191
1160
  integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
@@ -1262,14 +1231,14 @@ esrecurse@^4.1.0:
1262
1231
  estraverse "^4.1.0"
1263
1232
 
1264
1233
  estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
1265
- version "4.2.0"
1266
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1267
- integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=
1234
+ version "4.3.0"
1235
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1236
+ integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
1268
1237
 
1269
1238
  esutils@^2.0.2:
1270
- version "2.0.2"
1271
- resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1272
- integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=
1239
+ version "2.0.3"
1240
+ resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1241
+ integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1273
1242
 
1274
1243
  expand-brackets@^0.1.4:
1275
1244
  version "0.1.5"
@@ -1542,9 +1511,9 @@ globals@^9.18.0:
1542
1511
  integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
1543
1512
 
1544
1513
  graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1545
- version "4.2.0"
1546
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b"
1547
- integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==
1514
+ version "4.2.2"
1515
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02"
1516
+ integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==
1548
1517
 
1549
1518
  has-ansi@^2.0.0:
1550
1519
  version "2.0.0"
@@ -1615,9 +1584,9 @@ home-or-tmp@^2.0.0:
1615
1584
  os-tmpdir "^1.0.1"
1616
1585
 
1617
1586
  hosted-git-info@^2.1.4:
1618
- version "2.7.1"
1619
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
1620
- integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==
1587
+ version "2.8.4"
1588
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.4.tgz#44119abaf4bc64692a16ace34700fed9c03e2546"
1589
+ integrity sha512-pzXIvANXEFrc5oFFXRMkbLPQ2rXRoDERwDLyrcUxGhaZhgP54BBSl9Oheh7Vv0T090cszWBxPjkQQ5Sq1PbBRQ==
1621
1590
 
1622
1591
  iconv-lite@^0.4.24, iconv-lite@^0.4.4:
1623
1592
  version "0.4.24"
@@ -1627,9 +1596,9 @@ iconv-lite@^0.4.24, iconv-lite@^0.4.4:
1627
1596
  safer-buffer ">= 2.1.2 < 3"
1628
1597
 
1629
1598
  ignore-walk@^3.0.1:
1630
- version "3.0.1"
1631
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
1632
- integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==
1599
+ version "3.0.2"
1600
+ resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.2.tgz#99d83a246c196ea5c93ef9315ad7b0819c35069b"
1601
+ integrity sha512-EXyErtpHbn75ZTsOADsfx6J/FPo6/5cjev46PXrcTpd8z3BoRkXgYu9/JVqrI7tusjmwCZutGeRJeU0Wo1e4Cw==
1633
1602
  dependencies:
1634
1603
  minimatch "^3.0.4"
1635
1604
 
@@ -2025,12 +1994,27 @@ locate-path@^2.0.0:
2025
1994
  p-locate "^2.0.0"
2026
1995
  path-exists "^3.0.0"
2027
1996
 
2028
- lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.4:
2029
- version "4.17.11"
2030
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
2031
- integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
1997
+ lodash.assign@^4.2.0:
1998
+ version "4.2.0"
1999
+ resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
2000
+ integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=
2001
+
2002
+ lodash.intersection@^4.4.0:
2003
+ version "4.4.0"
2004
+ resolved "https://registry.yarnpkg.com/lodash.intersection/-/lodash.intersection-4.4.0.tgz#0a11ba631d0e95c23c7f2f4cbb9a692ed178e705"
2005
+ integrity sha1-ChG6Yx0OlcI8fy9Mu5ppLtF45wU=
2006
+
2007
+ lodash.keys@^4.2.0:
2008
+ version "4.2.0"
2009
+ resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-4.2.0.tgz#a08602ac12e4fb83f91fc1fb7a360a4d9ba35205"
2010
+ integrity sha1-oIYCrBLk+4P5H8H7ejYKTZujUgU=
2011
+
2012
+ lodash.omit@^4.5.0:
2013
+ version "4.5.0"
2014
+ resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60"
2015
+ integrity sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA=
2032
2016
 
2033
- lodash@^4.17.12, lodash@^4.17.14:
2017
+ lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.4:
2034
2018
  version "4.17.15"
2035
2019
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
2036
2020
  integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
@@ -2125,9 +2109,9 @@ minimist@^1.2.0:
2125
2109
  integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
2126
2110
 
2127
2111
  minipass@^2.2.1, minipass@^2.3.5:
2128
- version "2.3.5"
2129
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
2130
- integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==
2112
+ version "2.5.1"
2113
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.5.1.tgz#cf435a9bf9408796ca3a3525a8b851464279c9b8"
2114
+ integrity sha512-dmpSnLJtNQioZFI5HfQ55Ad0DzzsMAb+HfokwRTNXwEQjepbTkl5mtIlSVxGIkOkxlpX7wIn5ET/oAd9fZ/Y/Q==
2131
2115
  dependencies:
2132
2116
  safe-buffer "^5.1.2"
2133
2117
  yallist "^3.0.0"
@@ -2313,7 +2297,7 @@ object-inspect@^1.6.0:
2313
2297
  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b"
2314
2298
  integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==
2315
2299
 
2316
- object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
2300
+ object-keys@^1.0.12, object-keys@^1.1.1:
2317
2301
  version "1.1.1"
2318
2302
  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2319
2303
  integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
@@ -2325,26 +2309,6 @@ object-visit@^1.0.0:
2325
2309
  dependencies:
2326
2310
  isobject "^3.0.0"
2327
2311
 
2328
- object.assign@^4.1.0:
2329
- version "4.1.0"
2330
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
2331
- integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
2332
- dependencies:
2333
- define-properties "^1.1.2"
2334
- function-bind "^1.1.1"
2335
- has-symbols "^1.0.0"
2336
- object-keys "^1.0.11"
2337
-
2338
- object.entries@^1.1.0:
2339
- version "1.1.0"
2340
- resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"
2341
- integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA==
2342
- dependencies:
2343
- define-properties "^1.1.3"
2344
- es-abstract "^1.12.0"
2345
- function-bind "^1.1.1"
2346
- has "^1.0.3"
2347
-
2348
2312
  object.omit@^2.0.0:
2349
2313
  version "2.0.1"
2350
2314
  resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
@@ -2740,9 +2704,9 @@ resolve-url@^0.2.1:
2740
2704
  integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
2741
2705
 
2742
2706
  resolve@^1.10.0, resolve@^1.11.0, resolve@^1.5.0:
2743
- version "1.11.1"
2744
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e"
2745
- integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==
2707
+ version "1.12.0"
2708
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
2709
+ integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
2746
2710
  dependencies:
2747
2711
  path-parse "^1.0.6"
2748
2712
 
@@ -2759,13 +2723,29 @@ ret@~0.1.10:
2759
2723
  resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
2760
2724
  integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
2761
2725
 
2762
- rimraf@2.6.3, rimraf@^2.6.1:
2726
+ rimraf@2.6.3:
2763
2727
  version "2.6.3"
2764
2728
  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
2765
2729
  integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
2766
2730
  dependencies:
2767
2731
  glob "^7.1.3"
2768
2732
 
2733
+ rimraf@^2.6.1:
2734
+ version "2.7.1"
2735
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
2736
+ integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
2737
+ dependencies:
2738
+ glob "^7.1.3"
2739
+
2740
+ rollup@^1.21.2:
2741
+ version "1.21.2"
2742
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.21.2.tgz#eaabd07d0bd309587ad8bebf731fca6fcb96f4d0"
2743
+ integrity sha512-sCAHlcQ/PExU5t/kRwkEWHdhGmQrZ2IgdQzbjPVNfhWbKHMMZGYqkASVTpQqRPLtQKg15xzEscc+BnIK/TE7/Q==
2744
+ dependencies:
2745
+ "@types/estree" "0.0.39"
2746
+ "@types/node" "^12.7.4"
2747
+ acorn "^7.0.0"
2748
+
2769
2749
  run-async@^2.2.0:
2770
2750
  version "2.3.0"
2771
2751
  resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
@@ -2774,9 +2754,9 @@ run-async@^2.2.0:
2774
2754
  is-promise "^2.1.0"
2775
2755
 
2776
2756
  rxjs@^6.4.0:
2777
- version "6.5.2"
2778
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7"
2779
- integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==
2757
+ version "6.5.3"
2758
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a"
2759
+ integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==
2780
2760
  dependencies:
2781
2761
  tslib "^1.9.0"
2782
2762
 
@@ -2808,9 +2788,9 @@ sax@^1.2.4:
2808
2788
  integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
2809
2789
 
2810
2790
  "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0:
2811
- version "5.7.0"
2812
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
2813
- integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==
2791
+ version "5.7.1"
2792
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
2793
+ integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
2814
2794
 
2815
2795
  semver@^6.1.2:
2816
2796
  version "6.3.0"
@@ -2948,9 +2928,9 @@ spdx-expression-parse@^3.0.0:
2948
2928
  spdx-license-ids "^3.0.0"
2949
2929
 
2950
2930
  spdx-license-ids@^3.0.0:
2951
- version "3.0.4"
2952
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1"
2953
- integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==
2931
+ version "3.0.5"
2932
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
2933
+ integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
2954
2934
 
2955
2935
  split-string@^3.0.1, split-string@^3.0.2:
2956
2936
  version "3.1.0"
@@ -3008,20 +2988,20 @@ string.prototype.padend@^3.0.0:
3008
2988
  function-bind "^1.0.2"
3009
2989
 
3010
2990
  string.prototype.trimleft@^2.0.0:
3011
- version "2.0.0"
3012
- resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.0.0.tgz#68b6aa8e162c6a80e76e3a8a0c2e747186e271ff"
3013
- integrity sha1-aLaqjhYsaoDnbjqKDC50cYbicf8=
2991
+ version "2.1.0"
2992
+ resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634"
2993
+ integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==
3014
2994
  dependencies:
3015
- define-properties "^1.1.2"
3016
- function-bind "^1.0.2"
2995
+ define-properties "^1.1.3"
2996
+ function-bind "^1.1.1"
3017
2997
 
3018
2998
  string.prototype.trimright@^2.0.0:
3019
- version "2.0.0"
3020
- resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.0.0.tgz#ab4a56d802a01fbe7293e11e84f24dc8164661dd"
3021
- integrity sha1-q0pW2AKgH75yk+EehPJNyBZGYd0=
2999
+ version "2.1.0"
3000
+ resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58"
3001
+ integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==
3022
3002
  dependencies:
3023
- define-properties "^1.1.2"
3024
- function-bind "^1.0.2"
3003
+ define-properties "^1.1.3"
3004
+ function-bind "^1.1.1"
3025
3005
 
3026
3006
  string_decoder@~1.1.1:
3027
3007
  version "1.1.1"
@@ -3079,12 +3059,12 @@ supports-color@^5.3.0:
3079
3059
  has-flag "^3.0.0"
3080
3060
 
3081
3061
  table@^5.2.3:
3082
- version "5.4.1"
3083
- resolved "https://registry.yarnpkg.com/table/-/table-5.4.1.tgz#0691ae2ebe8259858efb63e550b6d5f9300171e8"
3084
- integrity sha512-E6CK1/pZe2N75rGZQotFOdmzWQ1AILtgYbMAbAjvms0S1l5IDB47zG3nCnFGB/w+7nB3vKofbLXCH7HPBo864w==
3062
+ version "5.4.6"
3063
+ resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
3064
+ integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
3085
3065
  dependencies:
3086
- ajv "^6.9.1"
3087
- lodash "^4.17.11"
3066
+ ajv "^6.10.2"
3067
+ lodash "^4.17.14"
3088
3068
  slice-ansi "^2.1.0"
3089
3069
  string-width "^3.0.0"
3090
3070
 
@@ -1,5 +1,5 @@
1
1
  module Webpacker
2
2
  module Svelte
3
- VERSION = "0.0.0".freeze
3
+ VERSION = "1.0.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webpacker-svelte
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Will Ockelmann-Wagner
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-04 00:00:00.000000000 Z
11
+ date: 2021-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: webpacker
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description:
97
+ description:
98
98
  email:
99
99
  - will.ockelmann.wagner@gmail.com
100
100
  executables: []
@@ -105,6 +105,7 @@ files:
105
105
  - ".github/PULL_REQUEST_TEMPLATE"
106
106
  - ".gitignore"
107
107
  - ".rubocop.yml"
108
+ - ".tool-versions"
108
109
  - CHANGELOG.md
109
110
  - CODE_OF_CONDUCT.md
110
111
  - Gemfile
@@ -119,10 +120,9 @@ files:
119
120
  - javascript/webpacker_svelte-npm-module/.eslintrc.js
120
121
  - javascript/webpacker_svelte-npm-module/.prettierignore
121
122
  - javascript/webpacker_svelte-npm-module/README.md
122
- - javascript/webpacker_svelte-npm-module/dist/package.json
123
- - javascript/webpacker_svelte-npm-module/dist/yarn.lock
124
123
  - javascript/webpacker_svelte-npm-module/package.json
125
124
  - javascript/webpacker_svelte-npm-module/prettier.config.js
125
+ - javascript/webpacker_svelte-npm-module/rollup.config.js
126
126
  - javascript/webpacker_svelte-npm-module/src/index.js
127
127
  - javascript/webpacker_svelte-npm-module/src/ujs.js
128
128
  - javascript/webpacker_svelte-npm-module/yarn.lock
@@ -137,7 +137,7 @@ homepage: https://github.com/will-wow/webpacker-svelte
137
137
  licenses:
138
138
  - MIT
139
139
  metadata: {}
140
- post_install_message:
140
+ post_install_message:
141
141
  rdoc_options: []
142
142
  require_paths:
143
143
  - lib
@@ -153,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  version: '0'
154
154
  requirements: []
155
155
  rubygems_version: 3.0.3
156
- signing_key:
156
+ signing_key:
157
157
  specification_version: 4
158
158
  summary: Provides Svelte integration for Webpacker
159
159
  test_files: []
@@ -1,26 +0,0 @@
1
- {
2
- "name": "webpacker-svelte",
3
- "version": "0.0.0",
4
- "description": "Javascript",
5
- "main": "index.js",
6
- "homepage": "https://github.com/will-wow/webpacker-svelte",
7
- "repository": "will-wow/webpacker-svelte",
8
- "author": {
9
- "name": "Will Ockelmann-Wagner",
10
- "email": "will.ockelmann.wagner@gmail.com"
11
- },
12
- "peerDependencies": {
13
- "svelte": ">= 3"
14
- },
15
- "files": [
16
- "index.js",
17
- "ujs.js"
18
- ],
19
- "scripts": {
20
- "prepublish": "cd .. ; yarn run build"
21
- },
22
- "license": "MIT",
23
- "dependencies": {
24
- "webpack-merge": "^4.1.1"
25
- }
26
- }
@@ -1,13 +0,0 @@
1
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
- # yarn lockfile v1
3
-
4
-
5
- lodash@^4.17.4:
6
- version "4.17.4"
7
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
8
-
9
- webpack-merge@^4.1.1:
10
- version "4.1.1"
11
- resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.1.1.tgz#f1197a0a973e69c6fbeeb6d658219aa8c0c13555"
12
- dependencies:
13
- lodash "^4.17.4"