Skip to content

Commit 14af2d7

Browse files
authored
Merge pull request #208 from chantouchsek/feat/rename-package
Renamed git repository name
2 parents 6ab9f93 + 6652262 commit 14af2d7

22 files changed

+2015
-1693
lines changed

.eslintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"prettier",
66
"plugin:@typescript-eslint/eslint-recommended",
77
"plugin:@typescript-eslint/recommended",
8-
"prettier/@typescript-eslint",
98
"plugin:prettier/recommended"
109
],
1110
"parser": "@typescript-eslint/parser",

.github/dependabot.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
version: 2
22
updates:
3-
# Fetch and update latest `npm` packages
4-
- package-ecosystem: npm
5-
directory: '/'
6-
schedule:
7-
interval: daily
8-
time: '00:00'
9-
open-pull-requests-limit: 10
10-
reviewers:
11-
- chantouchsek
12-
assignees:
13-
- chantouchsek
14-
commit-message:
15-
prefix: fix
16-
prefix-development: chore
17-
include: scope
18-
# Fetch and update latest `github-actions` pkgs
19-
- package-ecosystem: github-actions
20-
directory: '/'
21-
schedule:
22-
interval: daily
23-
time: '00:00'
24-
open-pull-requests-limit: 10
25-
reviewers:
26-
- chantouchsek
27-
assignees:
28-
- chantouchsek
29-
commit-message:
30-
prefix: fix
31-
prefix-development: chore
32-
include: scope
3+
# Fetch and update latest `npm` packages
4+
- package-ecosystem: npm
5+
directory: '/'
6+
schedule:
7+
interval: daily
8+
time: '00:00'
9+
open-pull-requests-limit: 10
10+
reviewers:
11+
- chantouchsek
12+
assignees:
13+
- chantouchsek
14+
commit-message:
15+
prefix: fix
16+
prefix-development: chore
17+
include: scope
18+
# Fetch and update latest `github-actions` pkgs
19+
- package-ecosystem: github-actions
20+
directory: '/'
21+
schedule:
22+
interval: daily
23+
time: '00:00'
24+
open-pull-requests-limit: 10
25+
reviewers:
26+
- chantouchsek
27+
assignees:
28+
- chantouchsek
29+
commit-message:
30+
prefix: fix
31+
prefix-development: chore
32+
include: scope

.github/workflows/test.yml renamed to .github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
name: Node.js Package Lint And Test
1+
name: ci
22

33
on:
44
push:
55
branches:
6-
- "*"
7-
- "!master"
6+
- 'main'
87
pull_request:
98
branches:
10-
- "*"
9+
- 'main'
1110

1211
jobs:
1312
lint-and-test:
@@ -19,10 +18,10 @@ jobs:
1918
os: [ubuntu-latest, macOS-latest]
2019

2120
steps:
22-
- uses: actions/checkout@v2.3.4
21+
- uses: actions/checkout@v2.4.0
2322
with:
2423
fetch-depth: 1
25-
- uses: actions/setup-node@v2.4.1
24+
- uses: actions/setup-node@v2.5.0
2625
with:
2726
node-version: ${{ matrix.node-version }}
2827
- run: yarn

.github/workflows/stale.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,17 @@ name: Mark stale issues and pull requests
22

33
on:
44
schedule:
5-
- cron: "30 1 * * *"
5+
- cron: '30 1 * * *'
66

77
jobs:
88
stale:
9-
109
runs-on: ubuntu-latest
1110

1211
steps:
13-
- uses: actions/stale@v4
14-
with:
15-
repo-token: ${{ secrets.GITHUB_TOKEN }}
16-
stale-issue-message: 'Stale issue message'
17-
stale-pr-message: 'Stale pull request message'
18-
stale-issue-label: 'no-issue-activity'
19-
stale-pr-label: 'no-pr-activity'
12+
- uses: actions/stale@v4
13+
with:
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15+
stale-issue-message: 'Stale issue message'
16+
stale-pr-message: 'Stale pull request message'
17+
stale-issue-label: 'no-issue-activity'
18+
stale-pr-label: 'no-pr-activity'

.prettierignore

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
###
2+
# Place your Prettier ignore content here
3+
4+
###
5+
# .gitignore content is duplicated here due to https://github.com/prettier/prettier/issues/8506
6+
7+
# Created by .ignore support plugin (hsz.mobi)
8+
### Node template
9+
# Logs
10+
/logs
11+
*.log
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
16+
# Runtime data
17+
pids
18+
*.pid
19+
*.seed
20+
*.pid.lock
21+
22+
# Directory for instrumented libs generated by jscoverage/JSCover
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
coverage
27+
28+
# nyc test coverage
29+
.nyc_output
30+
31+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
32+
.grunt
33+
34+
# Bower dependency directory (https://bower.io/)
35+
bower_components
36+
37+
# node-waf configuration
38+
.lock-wscript
39+
40+
# Compiled binary addons (https://nodejs.org/api/addons.html)
41+
build/Release
42+
43+
# Dependency directories
44+
node_modules/
45+
jspm_packages/
46+
47+
# TypeScript v1 declaration files
48+
typings/
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Optional REPL history
57+
.node_repl_history
58+
59+
# Output of 'npm pack'
60+
*.tgz
61+
62+
# Yarn Integrity file
63+
.yarn-integrity
64+
65+
# dotenv environment variables file
66+
.env
67+
68+
# parcel-bundler cache (https://parceljs.org/)
69+
.cache
70+
71+
# next.js build output
72+
.next
73+
74+
# nuxt.js build output
75+
.nuxt
76+
77+
# Nuxt generate
78+
dist
79+
80+
# vuepress build output
81+
.vuepress/dist
82+
83+
# Serverless directories
84+
.serverless
85+
86+
# IDE / Editor
87+
.idea
88+
89+
# Service worker
90+
sw.*
91+
92+
# macOS
93+
.DS_Store
94+
95+
# Vim swap files
96+
*.swp
97+
98+
CHANGELOG.md

.travis.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Chantouch Sek
3+
Copyright (c) 2020-Present Chantouch Sek
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)