first commit

This commit is contained in:
MapleLeaf
2021-12-08 00:36:52 -06:00
commit 8eecf8c54b
7 changed files with 3792 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
dist
node_modules

5
.prettierignore Normal file
View File

@@ -0,0 +1,5 @@
build
dist
.yarn
pnpm-lock.yaml
.next

59
package.json Normal file
View File

@@ -0,0 +1,59 @@
{
"name": "reacord",
"type": "module",
"description": "send reactive discord messages using react components ⚛",
"version": "0.0.0",
"files": [
"dist"
],
"exports": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"scripts": {
"build": "tsup-node src/main.ts --target node16 --format cjs,esm --dts",
"test": "ava",
"lint": "eslint --ext js,ts,tsx .",
"lint-fix": "npm run lint -- --fix",
"format": "prettier --write ."
},
"keywords": [],
"author": "itsMapleLeaf",
"license": "MIT",
"dependencies": {
"match-sorter": "^6.3.1"
},
"devDependencies": {
"@itsmapleleaf/configs": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"ava": "^4.0.0-rc.1",
"esbuild-node-loader": "^0.6.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"tsup": "^5.10.3",
"typescript": "^4.5.2"
},
"prettier": "@itsmapleleaf/configs/prettier",
"eslintConfig": {
"extends": [
"./node_modules/@itsmapleleaf/configs/eslint"
]
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=esbuild-node-loader",
"--experimental-specifier-resolution=node",
"--no-warnings"
]
}
}

3712
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

4
src/main.ts Normal file
View File

@@ -0,0 +1,4 @@
/* eslint-disable import/no-unused-modules */
import { matchSorter } from "match-sorter"
export const result = matchSorter(["a", "b", "c"], "b")

6
tests/main.test.ts Normal file
View File

@@ -0,0 +1,6 @@
import test from "ava"
import { result } from "../src/main.js"
test("it is b", (t) => {
t.deepEqual(result, ["b"])
})

4
tsconfig.json Normal file
View File

@@ -0,0 +1,4 @@
{
"extends": "@itsmapleleaf/configs/tsconfig.app",
"exclude": ["dist", "node_modules"]
}