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 +4 -4
- data/.gitignore +1 -1
- data/.tool-versions +1 -0
- data/CHANGELOG.md +12 -1
- data/Gemfile.lock +1 -1
- data/README.md +33 -23
- data/javascript/webpacker_svelte-npm-module/.babelrc +10 -5
- data/javascript/webpacker_svelte-npm-module/.eslintrc.js +11 -5
- data/javascript/webpacker_svelte-npm-module/package.json +31 -6
- data/javascript/webpacker_svelte-npm-module/rollup.config.js +17 -0
- data/javascript/webpacker_svelte-npm-module/src/index.js +4 -4
- data/javascript/webpacker_svelte-npm-module/yarn.lock +111 -131
- data/lib/webpacker/svelte/version.rb +1 -1
- metadata +8 -8
- data/javascript/webpacker_svelte-npm-module/dist/package.json +0 -26
- data/javascript/webpacker_svelte-npm-module/dist/yarn.lock +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 544783cd3a0e19608681b84730ddd00d90e73a028198a60adde2dae37e5dbad9
|
4
|
+
data.tar.gz: 9a153f721c1ef8aef7cc0e6510a83442aa46f54f0a987a0a6cc98cd38ddce137
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c50babb053b9f4bb88651165c1466726055e1afd513755e956209f8749677b4c0537688742a6fd36a12a13e1c87cdd68b988901b2362f879aa1b4762d5c4b6ff
|
7
|
+
data.tar.gz: 3165e50b45e84b1d6fee163baed6080c1a917f6832774504172a466c8b79eb1bb0622677768e6027e308b0ae46c8eaf396b592ac14ac7e6c0a850286cc67467f
|
data/.gitignore
CHANGED
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
|
-
## [
|
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
data/README.md
CHANGED
@@ -1,30 +1,34 @@
|
|
1
1
|
# Webpacker-Svelte [](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/
|
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', "~>
|
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
|
-
|
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
|
-
**
|
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
|
-
//
|
129
|
-
hotReload:
|
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,
|
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
|
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
|
154
|
-
$ yarn
|
155
|
-
$
|
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
|
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
|
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,5 +1,15 @@
|
|
1
1
|
module.exports = {
|
2
|
-
|
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
|
3
|
-
"
|
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": "
|
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.
|
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
|
}
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import intersection from 'lodash
|
2
|
-
import keys from 'lodash
|
3
|
-
import assign from 'lodash
|
4
|
-
import omit from 'lodash
|
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.
|
7
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
8
|
-
integrity sha512-
|
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.
|
804
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
805
|
-
integrity sha512-
|
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.
|
1062
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
1063
|
-
integrity sha512-
|
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.
|
1079
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.
|
1080
|
-
integrity sha512-
|
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.
|
1145
|
-
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.
|
1146
|
-
integrity sha512-
|
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.
|
1266
|
-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.
|
1267
|
-
integrity
|
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.
|
1271
|
-
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.
|
1272
|
-
integrity
|
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.
|
1546
|
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.
|
1547
|
-
integrity sha512-
|
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.
|
1619
|
-
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.
|
1620
|
-
integrity sha512-
|
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.
|
1631
|
-
resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.
|
1632
|
-
integrity sha512-
|
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.
|
2029
|
-
version "4.
|
2030
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.
|
2031
|
-
integrity
|
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.
|
2129
|
-
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.
|
2130
|
-
integrity sha512-
|
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.
|
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.
|
2744
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
2745
|
-
integrity sha512-
|
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
|
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.
|
2778
|
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.
|
2779
|
-
integrity sha512-
|
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.
|
2812
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.
|
2813
|
-
integrity sha512-
|
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.
|
2952
|
-
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.
|
2953
|
-
integrity sha512-
|
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.
|
3012
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.
|
3013
|
-
integrity
|
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.
|
3016
|
-
function-bind "^1.
|
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.
|
3020
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.
|
3021
|
-
integrity
|
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.
|
3024
|
-
function-bind "^1.
|
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.
|
3083
|
-
resolved "https://registry.yarnpkg.com/table/-/table-5.4.
|
3084
|
-
integrity sha512-
|
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.
|
3087
|
-
lodash "^4.17.
|
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
|
|
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:
|
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:
|
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"
|