Spaces:
Sleeping
Sleeping
T1ckbase commited on
Commit ·
a7cafb3
1
Parent(s): d5f7d90
lol
Browse files
deno.json
CHANGED
|
@@ -9,37 +9,37 @@
|
|
| 9 |
"@std/collections": "jsr:@std/collections",
|
| 10 |
"@std/crypto": "jsr:@std/crypto",
|
| 11 |
"@std/csv": "jsr:@std/csv",
|
| 12 |
-
"@std/data-structures": "@std/data-structures",
|
| 13 |
-
"@std/datetime": "@std/datetime",
|
| 14 |
-
"@std/dotenv": "@std/dotenv",
|
| 15 |
-
"@std/encoding": "@std/encoding",
|
| 16 |
-
"@std/expect": "@std/expect",
|
| 17 |
-
"@std/fmt": "@std/fmt",
|
| 18 |
-
"@std/front-matter": "@std/front-matter",
|
| 19 |
"@std/fs": "jsr:@std/fs",
|
| 20 |
-
"@std/html": "@std/html",
|
| 21 |
-
"@std/http": "@std/http",
|
| 22 |
-
"@std/ini": "@std/ini",
|
| 23 |
-
"@std/internal": "@std/internal",
|
| 24 |
-
"@std/io": "@std/io",
|
| 25 |
-
"@std/json": "@std/json",
|
| 26 |
-
"@std/jsonc": "@std/jsonc",
|
| 27 |
-
"@std/log": "@std/log",
|
| 28 |
-
"@std/media-types": "@std/media-types",
|
| 29 |
-
"@std/msgpack": "@std/msgpack",
|
| 30 |
-
"@std/net": "@std/net",
|
| 31 |
-
"@std/path": "@std/path",
|
| 32 |
-
"@std/random": "@std/random",
|
| 33 |
-
"@std/regexp": "@std/regexp",
|
| 34 |
-
"@std/semver": "@std/semver",
|
| 35 |
-
"@std/streams": "@std/streams",
|
| 36 |
-
"@std/tar": "@std/tar",
|
| 37 |
-
"@std/testing": "@std/testing",
|
| 38 |
-
"@std/toml": "@std/toml",
|
| 39 |
-
"@std/ulid": "@std/ulid",
|
| 40 |
-
"@std/uuid": "@std/uuid",
|
| 41 |
-
"@std/webgpu": "@std/webgpu",
|
| 42 |
-
"@std/yaml": "@std/yaml"
|
| 43 |
},
|
| 44 |
"lock": false,
|
| 45 |
"fmt": {
|
|
|
|
| 9 |
"@std/collections": "jsr:@std/collections",
|
| 10 |
"@std/crypto": "jsr:@std/crypto",
|
| 11 |
"@std/csv": "jsr:@std/csv",
|
| 12 |
+
"@std/data-structures": "jsr:@std/data-structures",
|
| 13 |
+
"@std/datetime": "jsr:@std/datetime",
|
| 14 |
+
"@std/dotenv": "jsr:@std/dotenv",
|
| 15 |
+
"@std/encoding": "jsr:@std/encoding",
|
| 16 |
+
"@std/expect": "jsr:@std/expect",
|
| 17 |
+
"@std/fmt": "jsr:@std/fmt",
|
| 18 |
+
"@std/front-matter": "jsr:@std/front-matter",
|
| 19 |
"@std/fs": "jsr:@std/fs",
|
| 20 |
+
"@std/html": "jsr:@std/html",
|
| 21 |
+
"@std/http": "jsr:@std/http",
|
| 22 |
+
"@std/ini": "jsr:@std/ini",
|
| 23 |
+
"@std/internal": "jsr:@std/internal",
|
| 24 |
+
"@std/io": "jsr:@std/io",
|
| 25 |
+
"@std/json": "jsr:@std/json",
|
| 26 |
+
"@std/jsonc": "jsr:@std/jsonc",
|
| 27 |
+
"@std/log": "jsr:@std/log",
|
| 28 |
+
"@std/media-types": "jsr:@std/media-types",
|
| 29 |
+
"@std/msgpack": "jsr:@std/msgpack",
|
| 30 |
+
"@std/net": "jsr:@std/net",
|
| 31 |
+
"@std/path": "jsr:@std/path",
|
| 32 |
+
"@std/random": "jsr:@std/random",
|
| 33 |
+
"@std/regexp": "jsr:@std/regexp",
|
| 34 |
+
"@std/semver": "jsr:@std/semver",
|
| 35 |
+
"@std/streams": "jsr:@std/streams",
|
| 36 |
+
"@std/tar": "jsr:@std/tar",
|
| 37 |
+
"@std/testing": "jsr:@std/testing",
|
| 38 |
+
"@std/toml": "jsr:@std/toml",
|
| 39 |
+
"@std/ulid": "jsr:@std/ulid",
|
| 40 |
+
"@std/uuid": "jsr:@std/uuid",
|
| 41 |
+
"@std/webgpu": "jsr:@std/webgpu",
|
| 42 |
+
"@std/yaml": "jsr:@std/yaml"
|
| 43 |
},
|
| 44 |
"lock": false,
|
| 45 |
"fmt": {
|
main.ts
CHANGED
|
@@ -7,37 +7,37 @@ import '@std/cli';
|
|
| 7 |
import '@std/collections';
|
| 8 |
import '@std/crypto';
|
| 9 |
import '@std/csv';
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
// import '@std/fmt';
|
| 16 |
-
|
| 17 |
import '@std/fs';
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
// import '@std/testing';
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
|
| 42 |
Deno.writeTextFileSync('test.txt', 'hello world');
|
| 43 |
|
|
|
|
| 7 |
import '@std/collections';
|
| 8 |
import '@std/crypto';
|
| 9 |
import '@std/csv';
|
| 10 |
+
import '@std/data-structures';
|
| 11 |
+
import '@std/datetime';
|
| 12 |
+
import '@std/dotenv';
|
| 13 |
+
import '@std/encoding';
|
| 14 |
+
import '@std/expect';
|
| 15 |
// import '@std/fmt';
|
| 16 |
+
import '@std/front-matter';
|
| 17 |
import '@std/fs';
|
| 18 |
+
import '@std/html';
|
| 19 |
+
import '@std/http';
|
| 20 |
+
import '@std/ini';
|
| 21 |
+
import '@std/internal';
|
| 22 |
+
import '@std/io';
|
| 23 |
+
import '@std/json';
|
| 24 |
+
import '@std/jsonc';
|
| 25 |
+
import '@std/log';
|
| 26 |
+
import '@std/media-types';
|
| 27 |
+
import '@std/msgpack';
|
| 28 |
+
import '@std/net';
|
| 29 |
+
import '@std/path';
|
| 30 |
+
import '@std/random';
|
| 31 |
+
import '@std/regexp';
|
| 32 |
+
import '@std/semver';
|
| 33 |
+
import '@std/streams';
|
| 34 |
+
import '@std/tar';
|
| 35 |
// import '@std/testing';
|
| 36 |
+
import '@std/toml';
|
| 37 |
+
import '@std/ulid';
|
| 38 |
+
import '@std/uuid';
|
| 39 |
+
import '@std/webgpu';
|
| 40 |
+
import '@std/yaml';
|
| 41 |
|
| 42 |
Deno.writeTextFileSync('test.txt', 'hello world');
|
| 43 |
|