Skip to content

Commit

Permalink
add readme and dependabot workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshurajora committed Sep 7, 2023
1 parent 2320b8c commit 15af611
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
2 changes: 1 addition & 1 deletion lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export * from './common';
import * as MiniPoint from '.';
console.log("%cWelcome! to minipoint. Let's Play...", 'color: green');
console.log('%cFor your ease, window.MiniPoint is a thing.', 'color: blue');
console.warn('This is a library so use it that way.');
console.log('%cThis is a library so use it that way.', 'color: yellow');
console.log('%c' + MINIPOINT_LOGO, 'color: purple');
if (window) {
(window as any).MiniPoint = MiniPoint;
Expand Down
12 changes: 7 additions & 5 deletions lib/render/minipoint.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
export const MINIPOINT_LOGO = `
_ _ _ _
_ __ (_)_ _ (_)_ __ ___(_)_ _| |_
| ' \| | ' \| | '_ \/ _ \ | ' \ _|
|_|_|_|_|_||_|_| .__/\___/_|_||_\__|
|_|
_ _ _
(_) (_) (_) _
____ _ ____ _ ____ ___ _ ____ | |_
| \| | _ \| | _ \ / _ \| | _ \| _)
| | | | | | | | | | | | |_| | | | | | |__
|_|_|_|_|_| |_|_| ||_/ \___/|_|_| |_|\___)
|_|
`;
14 changes: 14 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
```typescript
_ _ _ __
____ ___ (_)___ (_)___ ____ (_)___ / /_
/ __ `__ \/ / __ \/ / __ \/ __ \/ / __ \/ __/
/ / / / / / / / / / / /_/ / /_/ / / / / / /_
/_/ /_/ /_/_/_/ /_/_/ .___/\____/_/_/ /_/\__/
/_/
```

A 2d Graphics Library spatially for Points/Vectors.

### Build Stats

[![Node.js CI](https://github.com/himanshurajora/minipoint/actions/workflows/node.js.yml/badge.svg)](https://github.com/himanshurajora/minipoint/actions/workflows/node.js.yml)

0 comments on commit 15af611

Please sign in to comment.