initial release
/ publish (push) Successful in 29s

This commit is contained in:
2026-01-20 00:54:08 -08:00
commit 8d0c7c7a06
8 changed files with 120 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
on:
push:
tags:
- "*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: npm ci
- run: npm version from-git --allow-same-version --no-git-tag-version
- run: npm config set registry https://gitea.sugoidogo.com/api/packages/sugoidogo/npm/
- run: npm config set -- '//gitea.sugoidogo.com/api/packages/sugoidogo/npm/:_authToken' "$PACKAGES_KEY"
env:
PACKAGES_KEY: ${{ secrets.PACKAGES_KEY }}
- run: npm publish
+3
View File
@@ -0,0 +1,3 @@
node_modules
dist
*.tgz
+21
View File
@@ -0,0 +1,21 @@
MIT License
Copyright (c) Microsoft Corporation.
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 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
+21
View File
@@ -0,0 +1,21 @@
# Node Web Globals
These types are copied (literally) from the web-globals folder of `@types/node` to provide types that are compatible with both web and node for developing libraries that are compatible with both web and node.
# Usage
To prevent tsc from importing the default `Dom` library, add the `compilerOptions` key `lib` with value `ESNext` (or whatever version you're targeting, such as `ES2022`).
<details><summary>tsconfig.json</summary>
```json
{
"compilerOptions":{
"module":"esnext",
"moduleResolution":"node",
"lib":["ESNext"]
}
}
```
</details>
+27
View File
@@ -0,0 +1,27 @@
{
"name": "node-web-globals",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"@types/node": "^25.0.9"
}
},
"node_modules/@types/node": {
"version": "25.0.9",
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.0.9.tgz",
"integrity": "sha512-/rpCXHlCWeqClNBwUhDcusJxXYDjZTyE8v5oTO7WbL8eij2nKhUeU89/6xgjU7N4/Vh3He0BtyhJdQbDyhiXAw==",
"license": "MIT",
"dependencies": {
"undici-types": "~7.16.0"
}
},
"node_modules/undici-types": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
"integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
"license": "MIT"
}
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"name":"@sugoidogo/node-web-globals",
"version": "0.0.0",
"type": "module",
"files": ["dist/"],
"types": "dist/index.d.ts",
"scripts": {
"prepack": "node src/main.ts"
},
"devDependencies": {
"@types/node": "^25.0.9"
}
}
+12
View File
@@ -0,0 +1,12 @@
import * as fs from 'node:fs'
fs.cpSync('node_modules/@types/node/web-globals','dist',{recursive:true})
fs.cpSync('node_modules/@types/node/LICENSE', 'LICENSE')
const node_types_index = fs.readFileSync('node_modules/@types/node/index.d.ts').toString()
let globals_types_index = ''
for (const line of node_types_index.split('\n')) {
if (line.includes('path="web-globals/')) {
globals_types_index+=line.replace('path="web-globals/','path="')+'\n'
}
}
fs.writeFileSync('dist/index.d.ts',globals_types_index)
+6
View File
@@ -0,0 +1,6 @@
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
}
}