vite 3.0.0-alpha.10 → 3.0.0-alpha.13
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/LICENSE.md +25 -3
- package/client.d.ts +12 -0
- package/dist/node/chunks/{dep-5e48add3.js → dep-0115731f.js} +1 -1
- package/dist/node/chunks/{dep-6f128771.js → dep-4cea16ce.js} +1 -1
- package/dist/node/chunks/{dep-134b43f1.js → dep-5d9a8c71.js} +8052 -7064
- package/dist/node/chunks/{dep-8176918d.js → dep-dab76395.js} +1 -1
- package/dist/node/cli.js +7 -6
- package/dist/node/constants.js +20 -3
- package/dist/node/index.d.ts +70 -21
- package/dist/node/index.js +1 -1
- package/dist/node-cjs/publicUtils.cjs +2147 -13
- package/package.json +15 -15
package/LICENSE.md
CHANGED
|
@@ -535,6 +535,28 @@ License: MIT
|
|
|
535
535
|
By: Rich Harris
|
|
536
536
|
Repository: rollup/plugins
|
|
537
537
|
|
|
538
|
+
> The MIT License (MIT)
|
|
539
|
+
>
|
|
540
|
+
> Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
541
|
+
>
|
|
542
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
543
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
544
|
+
> in the Software without restriction, including without limitation the rights
|
|
545
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
546
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
547
|
+
> furnished to do so, subject to the following conditions:
|
|
548
|
+
>
|
|
549
|
+
> The above copyright notice and this permission notice shall be included in
|
|
550
|
+
> all copies or substantial portions of the Software.
|
|
551
|
+
>
|
|
552
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
553
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
554
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
555
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
556
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
557
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
558
|
+
> THE SOFTWARE.
|
|
559
|
+
|
|
538
560
|
---------------------------------------
|
|
539
561
|
|
|
540
562
|
## @vue/compiler-core
|
|
@@ -660,7 +682,7 @@ Repository: chalk/ansi-regex
|
|
|
660
682
|
|
|
661
683
|
> MIT License
|
|
662
684
|
>
|
|
663
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
685
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
664
686
|
>
|
|
665
687
|
> 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:
|
|
666
688
|
>
|
|
@@ -3455,7 +3477,7 @@ Repository: chalk/strip-ansi
|
|
|
3455
3477
|
|
|
3456
3478
|
> MIT License
|
|
3457
3479
|
>
|
|
3458
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
3480
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3459
3481
|
>
|
|
3460
3482
|
> 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:
|
|
3461
3483
|
>
|
|
@@ -3832,7 +3854,7 @@ License: ISC
|
|
|
3832
3854
|
By: Eemeli Aro
|
|
3833
3855
|
Repository: github:eemeli/yaml
|
|
3834
3856
|
|
|
3835
|
-
> Copyright
|
|
3857
|
+
> Copyright Eemeli Aro <eemeli@gmail.com>
|
|
3836
3858
|
>
|
|
3837
3859
|
> Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3838
3860
|
> with or without fee is hereby granted, provided that the above copyright notice
|
package/client.d.ts
CHANGED
|
@@ -74,6 +74,18 @@ declare module '*.jpeg' {
|
|
|
74
74
|
const src: string
|
|
75
75
|
export default src
|
|
76
76
|
}
|
|
77
|
+
declare module '*.jfif' {
|
|
78
|
+
const src: string
|
|
79
|
+
export default src
|
|
80
|
+
}
|
|
81
|
+
declare module '*.pjpeg' {
|
|
82
|
+
const src: string
|
|
83
|
+
export default src
|
|
84
|
+
}
|
|
85
|
+
declare module '*.pjp' {
|
|
86
|
+
const src: string
|
|
87
|
+
export default src
|
|
88
|
+
}
|
|
77
89
|
declare module '*.png' {
|
|
78
90
|
const src: string
|
|
79
91
|
export default src
|