-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4b2f46
commit fd2f956
Showing
28 changed files
with
5,118 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
import { emptyDir , build } from 'https://deno.land/x/dnt/mod.ts' | ||
|
||
|
||
await emptyDir(`./npm`) | ||
|
||
|
||
await build({ | ||
|
||
entryPoints : [ `./Source/mod.ts` ] , | ||
outDir : `./npm` , | ||
|
||
shims : { | ||
deno : true | ||
}, | ||
|
||
package : { | ||
|
||
description : `Font made of ASCII characters` , | ||
version : Deno.args[0] , | ||
license : 'AGPLv3' , | ||
name : '@pordeno/ascii-font' , | ||
|
||
repository : { | ||
type : 'git' , | ||
url : `git+https://github.com/Pordeno/Ascii-Font.git` | ||
}, | ||
|
||
bugs : { | ||
url : `https://github.com/Pordeno/Ascii-Font/issues` | ||
} | ||
}, | ||
|
||
postBuild (){ | ||
Deno.copyFileSync(`LICENSE`,`npm/LICENSE`) | ||
Deno.copyFileSync(`README.md`,`npm/README.md`) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
################################################################################ | ||
# # | ||
# Editorconfig # | ||
# # | ||
# This file defines basic file properties that # | ||
# editors / IDEs use when you edit documents. # | ||
# # | ||
# Check https://EditorConfig.org for details. # | ||
# # | ||
################################################################################ | ||
|
||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
end_of_line = lf | ||
|
||
|
||
[*.{editorconfig,liquid,map,json,yml,css,tsx,js,ts,md}] | ||
|
||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 | ||
charset = utf-8 | ||
|
||
|
||
[*.md] | ||
|
||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
{ | ||
"version" : "1.0.1" , | ||
|
||
"tasks" : { | ||
"npm:publish" : "deno run -A .config/Tasks/NPM.ts $1 && cd npm && npm publish" , | ||
"dev" : "deno run Source/App.ts" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
src/ | ||
test_runner.js | ||
yarn.lock | ||
pnpm-lock.yaml |
Oops, something went wrong.