Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeleet committed Feb 29, 2024
1 parent e2ffe55 commit 45465d6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/lib
/npm
.DS_Store
node_modules
12 changes: 5 additions & 7 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{
"metadata": {
"minDenoVersion": "1.37",
"name": "hello_deno",
"version": "1.1.1"
},
"minDenoVersion": "1.41",
"name": "hello_deno",
"version": "1.2.0"
"include": ["**/*"],
"exclude": ["vendor/*"],
"vendor": true,
"lock": true,
"imports": {
"std/": "https://deno.land/std@0.182.0/",
"fun/": "https://deno.land/x/fun/"
"effect": "npm:effect",
"std/": "https://deno.land/std@0.217.0/"
}
}
16 changes: 16 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion hello.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { toUpperCase } from "fun/string.ts";
import { toUpperCase } from "npm:effect/String";

export function hello_deno() {
return toUpperCase("Hello deno!");
Expand Down

0 comments on commit 45465d6

Please sign in to comment.