🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
27
node_modules/@astrojs/webapi/LICENSE
generated
vendored
Normal file
27
node_modules/@astrojs/webapi/LICENSE
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
MIT License Copyright (c) 2022 The Astro Technology Company
|
||||
|
||||
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:
|
||||
|
||||
The above copyright notice and this permission notice
|
||||
(including the next paragraph) shall be included in all copies or substantial
|
||||
portions of the Software.
|
||||
|
||||
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.
|
||||
|
||||
---
|
||||
|
||||
Code from [@astrocommunity/webapi](https://www.npmjs.com/@astrocommunity/webapi) is licensed under the CC0-1.0 License.
|
||||
|
||||
Code from [event-target-shim](https://www.npmjs.com/package/event-target-shim) is licensed under the MIT License (MIT), Copyright Toru Nagashima.
|
||||
157
node_modules/@astrojs/webapi/README.md
generated
vendored
Normal file
157
node_modules/@astrojs/webapi/README.md
generated
vendored
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
# WebAPI
|
||||
|
||||
**WebAPI** lets you use Web APIs not present in Node v16 and later.
|
||||
|
||||
```sh
|
||||
npm install @astrojs/webapi
|
||||
```
|
||||
|
||||
```js
|
||||
import { polyfill } from '@astrojs/webapi'
|
||||
|
||||
polyfill(globalThis)
|
||||
|
||||
const t = new EventTarget()
|
||||
const e = new CustomEvent('hello')
|
||||
|
||||
t.addEventListener('hello', console.log)
|
||||
|
||||
t.dispatchEvent(e) // logs `e` event from `t`
|
||||
```
|
||||
|
||||
These APIs are combined from popular open source projects and configured to share implementation details. This allows their behavior to match browser expectations as well as reduce their combined memory footprint.
|
||||
|
||||
## Features
|
||||
|
||||
- [ByteLengthQueuingStrategy](https://developer.mozilla.org/en-US/docs/Web/API/ByteLengthQueuingStrategy)
|
||||
- [CanvasRenderingContext2D](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D)
|
||||
- [CSSStyleSheet](https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleSheet)
|
||||
- [CountQueuingStrategy](https://developer.mozilla.org/en-US/docs/Web/API/CountQueuingStrategy)
|
||||
- [CustomElementRegistry](https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry)
|
||||
- [CustomEvent](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent)
|
||||
- [DOMException](https://developer.mozilla.org/en-US/docs/Web/API/DOMException)
|
||||
- [Document](https://developer.mozilla.org/en-US/docs/Web/API/Document)
|
||||
- [DocumentFragment](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment)
|
||||
- [Element](https://developer.mozilla.org/en-US/docs/Web/API/Element)
|
||||
- [Event](https://developer.mozilla.org/en-US/docs/Web/API/Event)
|
||||
- [EventTarget](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget)
|
||||
- [File](https://developer.mozilla.org/en-US/docs/Web/API/File)
|
||||
- [FormData](https://developer.mozilla.org/en-US/docs/Web/API/FormData)
|
||||
- [HTMLDocument](https://developer.mozilla.org/en-US/docs/Web/API/HTMLDocument)
|
||||
- [HTMLElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement)
|
||||
- [HTMLBodyElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement)
|
||||
- [HTMLCanvasElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement)
|
||||
- [HTMLDivElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement)
|
||||
- [HTMLHeadElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement)
|
||||
- [HTMLHtmlElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement)
|
||||
- [HTMLImageElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement)
|
||||
- [HTMLSpanElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement)
|
||||
- [HTMLStyleElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement)
|
||||
- [HTMLTemplateElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement)
|
||||
- [HTMLUnknownElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement)
|
||||
- [Headers](https://developer.mozilla.org/en-US/docs/Web/API/Headers)
|
||||
- [IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver)
|
||||
- [Image](https://developer.mozilla.org/en-US/docs/Web/API/Image)
|
||||
- [ImageData](https://developer.mozilla.org/en-US/docs/Web/API/ImageData)
|
||||
- [MediaQueryList](https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryList)
|
||||
- [MutationObserver](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver)
|
||||
- [Node](https://developer.mozilla.org/en-US/docs/Web/API/Node)
|
||||
- [NodeIterator](https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator)
|
||||
- [OffscreenCanvas](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas)
|
||||
- [ReadableByteStreamController](https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController)
|
||||
- [ReadableStream](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream)
|
||||
- [ReadableStreamBYOBReader](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamBYOBReader)
|
||||
- [ReadableStreamBYOBRequest](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamBYOBRequest)
|
||||
- [ReadableStreamDefaultController](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultController)
|
||||
- [ReadableStreamDefaultReader](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader)
|
||||
- [Request](https://developer.mozilla.org/en-US/docs/Web/API/Request)
|
||||
- [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response)
|
||||
- [ShadowRoot](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot)
|
||||
- [Storage](https://developer.mozilla.org/en-US/docs/Web/API/Storage)
|
||||
- [StyleSheet](https://developer.mozilla.org/en-US/docs/Web/API/StyleSheet)
|
||||
- [TransformStream](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream)
|
||||
- [TreeWalker](https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker)
|
||||
- [WritableStream](https://developer.mozilla.org/en-US/docs/Web/API/WritableStream)
|
||||
- [WritableStreamDefaultController](https://developer.mozilla.org/en-US/docs/Web/API/WritableStreamDefaultController)
|
||||
- [WritableStreamDefaultWriter](https://developer.mozilla.org/en-US/docs/Web/API/WritableStreamDefaultWriter)
|
||||
- [Window](https://developer.mozilla.org/en-US/docs/Web/API/Window)
|
||||
- [cancelAnimationFrame](https://developer.mozilla.org/en-US/docs/Web/API/Window/cancelAnimationFrame)
|
||||
- [cancelIdleCallback](https://developer.mozilla.org/en-US/docs/Web/API/cancelIdleCallback)
|
||||
- [clearTimeout](https://developer.mozilla.org/en-US/docs/Web/API/clearTimeout)
|
||||
- [fetch](https://developer.mozilla.org/en-US/docs/Web/API/fetch)
|
||||
- [localStorage](https://developer.mozilla.org/en-US/docs/Web/API/localStorage)
|
||||
- [requestAnimationFrame](https://developer.mozilla.org/en-US/docs/Web/API/requestAnimationFrame)
|
||||
- [requestIdleCallback](https://developer.mozilla.org/en-US/docs/Web/API/requestIdleCallback)
|
||||
- [setTimeout](https://developer.mozilla.org/en-US/docs/Web/API/setTimeout)
|
||||
- [structuredClone](https://developer.mozilla.org/en-US/docs/Web/API/structuredClone)
|
||||
- [URLPattern](https://developer.mozilla.org/en-US/docs/Web/API/URLPattern)
|
||||
|
||||
## Usage
|
||||
|
||||
You can use WebAPIs as individual exports.
|
||||
|
||||
```js
|
||||
import { Event, EventTarget, File, fetch, Response } from '@astrojs/webapi'
|
||||
```
|
||||
|
||||
You can apply WebAPIs to an object, like `globalThis`.
|
||||
|
||||
```js
|
||||
import { polyfill } from '@astrojs/webapi'
|
||||
|
||||
polyfill(globalThis)
|
||||
```
|
||||
|
||||
## Polyfill Options
|
||||
|
||||
The `exclude` option receives a list of WebAPIs to exclude from polyfilling.
|
||||
|
||||
```js
|
||||
polyfill(globalThis, {
|
||||
// disables polyfills for setTimeout clearTimeout
|
||||
exclude: 'setTimeout clearTimeout',
|
||||
})
|
||||
```
|
||||
|
||||
The `exclude` option accepts shorthands to exclude multiple polyfills. These shorthands end with the plus sign (`+`).
|
||||
|
||||
```js
|
||||
polyfill(globalThis, {
|
||||
// disables polyfills for setTimeout clearTimeout
|
||||
exclude: 'Timeout+',
|
||||
})
|
||||
```
|
||||
|
||||
```js
|
||||
polyfill(globalThis, {
|
||||
// disables polyfills for Node, Window, Document, HTMLElement, etc.
|
||||
exclude: 'Node+',
|
||||
})
|
||||
```
|
||||
|
||||
```js
|
||||
polyfill(globalThis, {
|
||||
// disables polyfills for Event, EventTarget, Node, Window, Document, HTMLElement, etc.
|
||||
exclude: 'Event+',
|
||||
})
|
||||
```
|
||||
|
||||
| Shorthand | Excludes |
|
||||
|:-------------- |:-------- |
|
||||
| `Document+` | `Document`, `HTMLDocument` |
|
||||
| `Element+` | `Element`, and exclusions from `HTMLElement+` |
|
||||
| `Event+` | `Event`, `CustomEvent`, `EventTarget`, `MediaQueryList`, `Window`, and exclusions from `Node+` |
|
||||
| `EventTarget+` | `Event`, `CustomEvent`, `EventTarget`, `MediaQueryList`, `Window`, and exclusions from `Node+` |
|
||||
| `HTMLElement+` | `CustomElementsRegistry`, `HTMLElement`, `HTMLBodyElement`, `HTMLCanvasElement`, `HTMLDivElement`, `HTMLHeadElement`, `HTMLHtmlElement`, `HTMLImageElement`, `HTMLStyleElement`, `HTMLTemplateElement`, `HTMLUnknownElement`, `Image` |
|
||||
| `Node+` | `Node`, `DocumentFragment`, `ShadowRoot`, `Document`, `HTMLDocument`, and exclusions from `Element+` |
|
||||
| `StyleSheet+` | `StyleSheet`, `CSSStyleSheet` |
|
||||
|
||||
---
|
||||
|
||||
|
||||
|
||||
## License & Attribution
|
||||
|
||||
Thank you to Jon Neal for his work on the original [webapi](https://github.com/astro-community/webapi) project that this package is forked from. Licensed under the CC0-1.0 License.
|
||||
|
||||
Code from [event-target-shim](https://www.npmjs.com/package/event-target-shim) is licensed under the MIT License (MIT), Copyright Toru Nagashima.
|
||||
5
node_modules/@astrojs/webapi/apply.js
generated
vendored
Normal file
5
node_modules/@astrojs/webapi/apply.js
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { polyfill } from './mod.js'
|
||||
|
||||
export * from './mod.js'
|
||||
|
||||
polyfill(globalThis)
|
||||
13
node_modules/@astrojs/webapi/mod.d.ts
generated
vendored
Normal file
13
node_modules/@astrojs/webapi/mod.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// organize-imports-ignore
|
||||
export { pathToPosix } from './lib/utils';
|
||||
export { alert, ByteLengthQueuingStrategy, cancelAnimationFrame, cancelIdleCallback, CanvasRenderingContext2D, CharacterData, clearTimeout, Comment, CountQueuingStrategy, crypto, CSSStyleSheet, CustomElementRegistry, CustomEvent, Document, DocumentFragment, DOMException, Element, Event, EventTarget, fetch, File, FormData, Headers, HTMLBodyElement, HTMLCanvasElement, HTMLDivElement, HTMLDocument, HTMLElement, HTMLHeadElement, HTMLHtmlElement, HTMLImageElement, HTMLSpanElement, HTMLStyleElement, HTMLTemplateElement, HTMLUnknownElement, Image, ImageData, IntersectionObserver, MediaQueryList, MutationObserver, Node, NodeFilter, NodeIterator, OffscreenCanvas, ReadableByteStreamController, ReadableStream, ReadableStreamBYOBReader, ReadableStreamBYOBRequest, ReadableStreamDefaultController, ReadableStreamDefaultReader, Request, requestAnimationFrame, requestIdleCallback, ResizeObserver, Response, setTimeout, ShadowRoot, structuredClone, StyleSheet, Text, TransformStream, TreeWalker, URLPattern, Window, WritableStream, WritableStreamDefaultController, WritableStreamDefaultWriter, } from './mod.js';
|
||||
export declare const polyfill: {
|
||||
(target: any, options?: PolyfillOptions): any;
|
||||
internals(target: any, name: string): any;
|
||||
};
|
||||
interface PolyfillOptions {
|
||||
exclude?: string | string[];
|
||||
override?: Record<string, {
|
||||
(...args: any[]): any;
|
||||
}>;
|
||||
}
|
||||
2421
node_modules/@astrojs/webapi/mod.js
generated
vendored
Normal file
2421
node_modules/@astrojs/webapi/mod.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/@astrojs/webapi/mod.js.map
generated
vendored
Normal file
1
node_modules/@astrojs/webapi/mod.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
97
node_modules/@astrojs/webapi/package.json
generated
vendored
Normal file
97
node_modules/@astrojs/webapi/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
{
|
||||
"name": "@astrojs/webapi",
|
||||
"description": "Use Web APIs in Node",
|
||||
"version": "2.2.0",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./mod.js",
|
||||
"types": "./mod.d.ts"
|
||||
},
|
||||
"./apply": {
|
||||
"import": "./apply.js"
|
||||
}
|
||||
},
|
||||
"main": "mod.js",
|
||||
"types": "mod.d.ts",
|
||||
"files": [
|
||||
"apply.js",
|
||||
"mod.d.ts",
|
||||
"mod.js",
|
||||
"mod.js.map"
|
||||
],
|
||||
"keywords": [
|
||||
"astro",
|
||||
"api",
|
||||
"cancelAnimationFrame",
|
||||
"clearImmediate",
|
||||
"clearInterval",
|
||||
"fetch",
|
||||
"requestAnimationFrame",
|
||||
"setImmediate",
|
||||
"setInterval",
|
||||
"web"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/withastro/astro.git",
|
||||
"directory": "packages/webapi"
|
||||
},
|
||||
"author": "withastro",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
"Jonathan Neal (https://github.com/jonathantneal)",
|
||||
"Toru Nagashima (https://github.com/mysticatea)",
|
||||
"Jimmy Wärting (https://github.com/jimmywarting)",
|
||||
"David Frank (https://github.com/bitinn)",
|
||||
"Mattias Buelens (https://github.com/MattiasBuelens)",
|
||||
"Diwank Singh (https://github.com/creatorrr)"
|
||||
],
|
||||
"bugs": "https://github.com/withastro/astro/issues",
|
||||
"homepage": "https://github.com/withastro/astro/tree/main/packages/webapi#readme",
|
||||
"dependencies": {
|
||||
"undici": "^5.22.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-alias": "^3.1.9",
|
||||
"@rollup/plugin-inject": "^4.0.4",
|
||||
"@rollup/plugin-node-resolve": "^13.3.0",
|
||||
"@rollup/plugin-typescript": "^8.3.2",
|
||||
"@types/chai": "^4.3.1",
|
||||
"@types/mocha": "^9.1.1",
|
||||
"@types/node": "^18.7.21",
|
||||
"@ungap/structured-clone": "^0.3.4",
|
||||
"chai": "^4.3.6",
|
||||
"event-target-shim": "^6.0.2",
|
||||
"magic-string": "^0.27.0",
|
||||
"mocha": "^9.2.2",
|
||||
"rollup": "^2.79.1",
|
||||
"tslib": "^2.5.0",
|
||||
"typescript": "~5.0.2",
|
||||
"urlpattern-polyfill": "^1.0.0-rc5"
|
||||
},
|
||||
"prettier": {
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "es5",
|
||||
"useTabs": true,
|
||||
"overrides": [
|
||||
{
|
||||
"files": [
|
||||
".stackblitzrc",
|
||||
"*.json"
|
||||
],
|
||||
"options": {
|
||||
"useTabs": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"build": "node run/build.js",
|
||||
"build:ci": "node run/build.js",
|
||||
"dev": "node run/build.js",
|
||||
"release": "node run/build.js && npm publish --access public",
|
||||
"test": "mocha --parallel --timeout 15000"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue