Skip to content

Commit 5d3299b

Browse files
committed
Rename packages from web-std => remix-run
1 parent bd52102 commit 5d3299b

30 files changed

+288
-288
lines changed

packages/blob/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@web-std/blob",
2+
"name": "@remix-run/web-blob",
33
"version": "3.0.4",
44
"description": "Web API compatible Blob implementation",
55
"keywords": [
@@ -26,10 +26,10 @@
2626
},
2727
"dependencies": {
2828
"web-encoding": "1.1.5",
29-
"@web-std/stream": "1.0.0"
29+
"@remix-run/web-stream": "^1.0.0"
3030
},
3131
"author": "Irakli Gozalishvili <[email protected]> (https://gozala.io)",
32-
"repository": "https://github.com/web-std/io",
32+
"repository": "https://github.com/remix-run/web-std-io",
3333
"license": "MIT",
3434
"devDependencies": {
3535
"@types/node": "15.0.2",

packages/blob/src/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export { TextEncoder, TextDecoder } from "web-encoding"
2-
export { ReadableStream } from "@web-std/stream"
2+
export { ReadableStream } from "@remix-run/web-stream"

packages/blob/test/blob.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Blob, TextDecoder } from "@web-std/blob"
2-
import * as lib from "@web-std/blob"
1+
import { Blob, TextDecoder } from "@remix-run/web-blob"
2+
import * as lib from "@remix-run/web-blob"
33
import { assert } from "./test.js"
44

55
/**

packages/blob/test/fetch.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Response } from "@web-std/fetch"
2-
import { Blob } from "@web-std/blob"
1+
import { Response } from "@remix-run/web-fetch"
2+
import { Blob } from "@remix-run/web-blob"
33
import { assert } from "./test.js"
44

55
/**

packages/blob/test/slice.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Blob, TextEncoder } from "@web-std/blob"
1+
import { Blob, TextEncoder } from "@remix-run/web-blob"
22
import { assert } from "./test.js"
33

44
/**

packages/blob/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compilerOptions": {
44
"outDir": "dist",
55
"paths": {
6-
"@web-std/blob": ["packages/blob/src/lib.js"]
6+
"@remix-run/web-blob": ["packages/blob/src/lib.js"]
77
}
88
},
99
"include": [

packages/fetch/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@web-std/fetch",
2+
"name": "@remix-run/web-fetch",
33
"version": "4.1.0",
44
"description": "Web API compatible fetch implementation",
55
"main": "./dist/lib.node.cjs",
@@ -54,7 +54,7 @@
5454
},
5555
"repository": {
5656
"type": "git",
57-
"url": "https://github.com/web-std/io.git"
57+
"url": "https://github.com/remix-run/web-std-io.git"
5858
},
5959
"keywords": [
6060
"fetch",
@@ -69,9 +69,9 @@
6969
"author": "David Frank",
7070
"license": "MIT",
7171
"bugs": {
72-
"url": "https://github.com/web-std/io/issues"
72+
"url": "https://github.com/remix-run/web-std-io/issues"
7373
},
74-
"homepage": "https://github.com/web-std/io",
74+
"homepage": "https://github.com/remix-run/web-std-io",
7575
"devDependencies": {
7676
"@types/chai": "^4.3.0",
7777
"@types/mocha": "^9.1.0",
@@ -97,9 +97,9 @@
9797
"typescript": "^4.4.4"
9898
},
9999
"dependencies": {
100-
"@web-std/blob": "^3.0.3",
101-
"@web-std/form-data": "^3.0.2",
102-
"@web-std/stream": "^1.0.1",
100+
"@remix-run/web-blob": "^3.0.3",
101+
"@remix-run/web-form-data": "^3.0.2",
102+
"@remix-run/web-stream": "^1.0.1",
103103
"data-uri-to-buffer": "^3.0.1",
104104
"mrmime": "^1.0.0",
105105
"@web3-storage/multipart-parser": "^1.0.0"

packages/fetch/src/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
export { Blob, ReadableStream } from '@web-std/blob'
3-
export { FormData } from '@web-std/form-data'
2+
export { Blob, ReadableStream } from '@remix-run/web-blob'
3+
export { FormData } from '@remix-run/web-form-data'
44

55

packages/fetch/src/package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const { FormData, Blob } = globalThis
2-
export { ReadableStream } from "@web-std/stream"
2+
export { ReadableStream } from "@remix-run/web-stream"
33

44

packages/fetch/test/commonjs/test-artifact.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// @ts-nocheck
22

33
const assert = require('assert');
4-
const fetch = require('@web-std/fetch');
4+
const fetch = require('@remix-run/web-fetch');
55
assert.strictEqual(
66
typeof fetch,
77
'function',
88
'default import must be a function'
99
);
1010

11-
const {Request, Response, Headers} = require('@web-std/fetch');
11+
const {Request, Response, Headers} = require('@remix-run/web-fetch');
1212

1313
assert.ok(
1414
new Request('https://www.test.com').headers instanceof Headers,

0 commit comments

Comments
 (0)