Skip to content

Commit fd9ff3d

Browse files
committed
initial commit
0 parents  commit fd9ff3d

File tree

6 files changed

+47
-0
lines changed

6 files changed

+47
-0
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish to npm on merge
2+
"on":
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
build_and_deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: actions/setup-node@v2
12+
with:
13+
node-version: "18"
14+
registry-url: "https://registry.npmjs.org"
15+
- name: Build project
16+
run: npm install && echo 'tsc --build ./tsconfig.json'
17+
- name: Publish package
18+
run: npm publish --access public
19+
env:
20+
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_GAT }}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# MacOS
2+
.DS_Store
3+

LICENSE

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Copyright 2023 Kamar Mack <https://github.com/kamarmack>
2+
3+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
4+
5+
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ergonomic-react

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("pending");

package.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"author": "Kamar Mack <https://github.com/kamarmack>",
3+
"description": "Helper types and functions for TypeScript repos using React",
4+
"keywords": [
5+
"functional",
6+
"nextjs",
7+
"react",
8+
"typescript"
9+
],
10+
"license": "ISC",
11+
"main": "index.js",
12+
"name": "ergonomic-react",
13+
"scripts": {
14+
"test": "echo \"Error: no test specified\" && exit 1"
15+
},
16+
"version": "0.0.1-alpha.0"
17+
}

0 commit comments

Comments
 (0)