@stencil/core 2.6.0-0 → 2.6.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.
- package/CHANGELOG.md +2 -5
- package/NOTICE.md +109 -2
- package/cli/index.cjs +2 -2
- package/cli/index.js +2 -2
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +5 -5
- package/compiler/stencil.min.js +2 -2
- package/dependencies.json +1 -1
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +2 -2
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +2 -2
- package/internal/app-data/package.json +1 -1
- package/internal/client/css-shim.js +1 -1
- package/internal/client/dom.js +1 -1
- package/internal/client/index.js +1 -1
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/client/patch-esm.js +1 -1
- package/internal/client/shadow-css.js +1 -1
- package/internal/hydrate/package.json +1 -1
- package/internal/package.json +1 -1
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +1 -1
- package/mock-doc/index.js +1 -1
- package/mock-doc/package.json +1 -1
- package/package.json +1 -1
- package/screenshot/package.json +1 -1
- package/sys/deno/index.js +1 -1
- package/sys/node/index.js +1 -1
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +2 -2
- package/testing/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# 📟 [2.6.0](https://github.com/ionic-team/stencil/compare/v2.6.0-0...v2.6.0) (2021-06-02)
|
|
3
2
|
|
|
4
3
|
### Features
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
- **platform:** add setPlatformHelpers() api ([f09abe6](https://github.com/ionic-team/stencil/commit/f09abe6455887025d508e645e7c8c024a5c42fa2))
|
|
9
6
|
|
|
10
7
|
## 🛥 [2.5.2](https://github.com/ionic-team/stencil/compare/v2.5.1...v2.5.2) (2021-03-30)
|
|
11
8
|
|
package/NOTICE.md
CHANGED
|
@@ -330,11 +330,11 @@ License: MIT
|
|
|
330
330
|
|
|
331
331
|
License: MIT
|
|
332
332
|
|
|
333
|
-
Author: [Sindre Sorhus](sindresorhus.com)
|
|
333
|
+
Author: [Sindre Sorhus](https://sindresorhus.com)
|
|
334
334
|
|
|
335
335
|
> MIT License
|
|
336
336
|
>
|
|
337
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
337
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
338
338
|
>
|
|
339
339
|
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
340
340
|
>
|
|
@@ -928,6 +928,13 @@ License: MIT
|
|
|
928
928
|
|
|
929
929
|
Author: Rich Harris
|
|
930
930
|
|
|
931
|
+
> Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors)
|
|
932
|
+
>
|
|
933
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
934
|
+
>
|
|
935
|
+
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
936
|
+
>
|
|
937
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
931
938
|
|
|
932
939
|
--------
|
|
933
940
|
|
|
@@ -1080,6 +1087,38 @@ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
|
|
|
1080
1087
|
|
|
1081
1088
|
--------
|
|
1082
1089
|
|
|
1090
|
+
## `function-bind`
|
|
1091
|
+
|
|
1092
|
+
License: MIT
|
|
1093
|
+
|
|
1094
|
+
Author: Raynos <raynos2@gmail.com>
|
|
1095
|
+
|
|
1096
|
+
Contributors: Raynos, [Jordan Harband](https://github.com/ljharb)
|
|
1097
|
+
|
|
1098
|
+
Homepage: https://github.com/Raynos/function-bind
|
|
1099
|
+
|
|
1100
|
+
> Copyright (c) 2013 Raynos.
|
|
1101
|
+
>
|
|
1102
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1103
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1104
|
+
> in the Software without restriction, including without limitation the rights
|
|
1105
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1106
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1107
|
+
> furnished to do so, subject to the following conditions:
|
|
1108
|
+
>
|
|
1109
|
+
> The above copyright notice and this permission notice shall be included in
|
|
1110
|
+
> all copies or substantial portions of the Software.
|
|
1111
|
+
>
|
|
1112
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1113
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1114
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1115
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1116
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1117
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1118
|
+
> THE SOFTWARE.
|
|
1119
|
+
|
|
1120
|
+
--------
|
|
1121
|
+
|
|
1083
1122
|
## `glob`
|
|
1084
1123
|
|
|
1085
1124
|
License: ISC
|
|
@@ -1132,6 +1171,43 @@ License: ISC
|
|
|
1132
1171
|
|
|
1133
1172
|
--------
|
|
1134
1173
|
|
|
1174
|
+
## `has`
|
|
1175
|
+
|
|
1176
|
+
License: MIT
|
|
1177
|
+
|
|
1178
|
+
License: MIT
|
|
1179
|
+
|
|
1180
|
+
Author: Thiago de Arruda
|
|
1181
|
+
|
|
1182
|
+
Contributors: [Jordan Harband](http://ljharb.codes)
|
|
1183
|
+
|
|
1184
|
+
Homepage: https://github.com/tarruda/has
|
|
1185
|
+
|
|
1186
|
+
> Copyright (c) 2013 Thiago de Arruda
|
|
1187
|
+
>
|
|
1188
|
+
> Permission is hereby granted, free of charge, to any person
|
|
1189
|
+
> obtaining a copy of this software and associated documentation
|
|
1190
|
+
> files (the "Software"), to deal in the Software without
|
|
1191
|
+
> restriction, including without limitation the rights to use,
|
|
1192
|
+
> copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1193
|
+
> copies of the Software, and to permit persons to whom the
|
|
1194
|
+
> Software is furnished to do so, subject to the following
|
|
1195
|
+
> conditions:
|
|
1196
|
+
>
|
|
1197
|
+
> The above copyright notice and this permission notice shall be
|
|
1198
|
+
> included in all copies or substantial portions of the Software.
|
|
1199
|
+
>
|
|
1200
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1201
|
+
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
1202
|
+
> OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1203
|
+
> NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
1204
|
+
> HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1205
|
+
> WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1206
|
+
> FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
1207
|
+
> OTHER DEALINGS IN THE SOFTWARE.
|
|
1208
|
+
|
|
1209
|
+
--------
|
|
1210
|
+
|
|
1135
1211
|
## `inflight`
|
|
1136
1212
|
|
|
1137
1213
|
License: ISC
|
|
@@ -1180,6 +1256,37 @@ License: ISC
|
|
|
1180
1256
|
|
|
1181
1257
|
--------
|
|
1182
1258
|
|
|
1259
|
+
## `is-core-module`
|
|
1260
|
+
|
|
1261
|
+
License: MIT
|
|
1262
|
+
|
|
1263
|
+
Author: Jordan Harband <ljharb@gmail.com>
|
|
1264
|
+
|
|
1265
|
+
Homepage: https://github.com/inspect-js/is-core-module
|
|
1266
|
+
|
|
1267
|
+
> The MIT License (MIT)
|
|
1268
|
+
>
|
|
1269
|
+
> Copyright (c) 2014 Dave Justice
|
|
1270
|
+
>
|
|
1271
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1272
|
+
> this software and associated documentation files (the "Software"), to deal in
|
|
1273
|
+
> the Software without restriction, including without limitation the rights to
|
|
1274
|
+
> use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
1275
|
+
> the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1276
|
+
> subject to the following conditions:
|
|
1277
|
+
>
|
|
1278
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1279
|
+
> copies or substantial portions of the Software.
|
|
1280
|
+
>
|
|
1281
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1282
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1283
|
+
> FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1284
|
+
> COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1285
|
+
> IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1286
|
+
> CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1287
|
+
|
|
1288
|
+
--------
|
|
1289
|
+
|
|
1183
1290
|
## `is-docker`
|
|
1184
1291
|
|
|
1185
1292
|
License: MIT
|
package/cli/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI (CommonJS) v2.6.0
|
|
2
|
+
Stencil CLI (CommonJS) v2.6.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
'use strict';
|
|
5
5
|
|
|
@@ -478,7 +478,7 @@ const getNpmConfigEnvArgs = (sys) => {
|
|
|
478
478
|
const dependencies = [
|
|
479
479
|
{
|
|
480
480
|
name: "@stencil/core",
|
|
481
|
-
version: "2.6.0
|
|
481
|
+
version: "2.6.0",
|
|
482
482
|
main: "compiler/stencil.js",
|
|
483
483
|
resources: [
|
|
484
484
|
"package.json",
|
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v2.6.0
|
|
2
|
+
Stencil CLI v2.6.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
const toLowerCase = (str) => str.toLowerCase();
|
|
5
5
|
const dashToPascalCase = (str) => toLowerCase(str)
|
|
@@ -454,7 +454,7 @@ const getNpmConfigEnvArgs = (sys) => {
|
|
|
454
454
|
const dependencies = [
|
|
455
455
|
{
|
|
456
456
|
name: "@stencil/core",
|
|
457
|
-
version: "2.6.0
|
|
457
|
+
version: "2.6.0",
|
|
458
458
|
main: "compiler/stencil.js",
|
|
459
459
|
resources: [
|
|
460
460
|
"package.json",
|
package/cli/package.json
CHANGED
package/compiler/package.json
CHANGED
package/compiler/stencil.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil Compiler v2.6.0
|
|
2
|
+
Stencil Compiler v2.6.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
(function(exports) {
|
|
5
5
|
'use strict';
|
|
@@ -3826,7 +3826,7 @@ const createCustomResolverAsync = (sys, inMemoryFs, exts) => {
|
|
|
3826
3826
|
};
|
|
3827
3827
|
|
|
3828
3828
|
// MODULE: version.js
|
|
3829
|
-
const buildId = '
|
|
3829
|
+
const buildId = '20210602143345';
|
|
3830
3830
|
const minfyJsId = 'terser5.6.1_7';
|
|
3831
3831
|
const optimizeCssId = 'autoprefixer10.2.5_postcss8.2.8_7';
|
|
3832
3832
|
const parse5Version = '6.0.1';
|
|
@@ -3834,8 +3834,8 @@ const rollupVersion = '2.42.3';
|
|
|
3834
3834
|
const sizzleVersion = '2.42.3';
|
|
3835
3835
|
const terserVersion = '5.6.1';
|
|
3836
3836
|
const typescriptVersion = '4.2.3';
|
|
3837
|
-
const vermoji = '
|
|
3838
|
-
const version$3 = '2.6.0
|
|
3837
|
+
const vermoji = '📟';
|
|
3838
|
+
const version$3 = '2.6.0';
|
|
3839
3839
|
const versions = {
|
|
3840
3840
|
stencil: version$3,
|
|
3841
3841
|
parse5: parse5Version,
|
|
@@ -62850,7 +62850,7 @@ const getComponentPathContent = (componentGraph, outputTarget) => {
|
|
|
62850
62850
|
const dependencies = [
|
|
62851
62851
|
{
|
|
62852
62852
|
name: "@stencil/core",
|
|
62853
|
-
version: "2.6.0
|
|
62853
|
+
version: "2.6.0",
|
|
62854
62854
|
main: "compiler/stencil.js",
|
|
62855
62855
|
resources: [
|
|
62856
62856
|
"package.json",
|