Skip to content

Commit a19a027

Browse files
committed
init
0 parents  commit a19a027

60 files changed

Lines changed: 17619 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
lib
3+
dist
4+
node_modules

LICENSE.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
The MIT License (MIT)
3+
4+
Copyright (c) 2020 Fred K. Schott
5+
6+
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:
7+
8+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9+
10+
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.
11+
12+
13+
"""
14+
15+
This license applies to parts of rollup-plugin-polyfill-node originating from the
16+
https://github.com/ionic-team/rollup-plugin-node-polyfills repository:
17+
18+
The MIT License (MIT)
19+
20+
Copyright (c) 2019 these people
21+
22+
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:
23+
24+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
25+
26+
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.

READMD.md

Whitespace-only changes.

package.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "@rolldown/plugin-node-polyfills",
3+
"version": "1.0.0",
4+
"description": "node polyfills for Rolldown",
5+
"main": "index.js",
6+
"type": "module",
7+
"scripts": {
8+
"test": "node --test",
9+
"prebuild": "rm -rf dist",
10+
"build": "node --import @oxc-node/core/register scripts/build.ts"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/rolldown/rolldown-plugin-node-polyfills.git"
15+
},
16+
"keywords": [
17+
"rolldown"
18+
],
19+
"author": "Evan You",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/rolldown/rolldown-plugin-node-polyfills/issues"
23+
},
24+
"homepage": "https://github.com/rolldown/rolldown-plugin-node-polyfills#readme",
25+
"packageManager": "pnpm@9.7.0",
26+
"devDependencies": {
27+
"@types/node": "^22.2.0",
28+
"rolldown": "canary",
29+
"typescript": "^5.5.4"
30+
}
31+
}

0 commit comments

Comments
 (0)