Skip to content

Commit

Permalink
Merge pull request #20 from Hanro50/4.0.0-Proposed
Browse files Browse the repository at this point in the history
4.0.0 proposed
  • Loading branch information
Hanro50 authored May 30, 2022
2 parents 4744054 + 2d290ab commit 971396f
Show file tree
Hide file tree
Showing 36 changed files with 1,359 additions and 1,752 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

package-lock.json

dist
types
node_modules
bin
bin
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/dist/tests.js",
"outFiles": [
"${workspaceFolder}/dest/**/*.js"
]
}
]
}
946 changes: 348 additions & 598 deletions README.md

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/node

const { execSync } = require("child_process");
const { rmSync } = require("fs");

rmSync('dist', { recursive: true, force: true });
rmSync('types', { recursive: true, force: true });

try {
console.log("[MSMC]:Compiling....")
console.log(execSync('tsc -b ./tsconfig.dist.json').toString('ascii'))
console.log("[MSMC]:Constructing declarations....")
console.log(execSync('tsc -b ./tsconfig.types.json').toString('ascii'))
} catch (e) {
console.log(e.toString('ascii'))
}
305 changes: 0 additions & 305 deletions index.d.ts

This file was deleted.

Loading

0 comments on commit 971396f

Please sign in to comment.