Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v1.1.4 #8

Merged
merged 6 commits into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
*.ts
update-dependencies.js
2 changes: 0 additions & 2 deletions .npmignore

This file was deleted.

12 changes: 0 additions & 12 deletions .run/lint.run.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .run/test.run.xml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# pad-center

`pad-center` fills between the start and end characters with whatever character you want while maintaining the length.
`pad-center` fills between the start and end characters with character you want while maintaining the length.
Like [padStart](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart)
and [padEnd](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd) but from
center, padCenter!
Expand Down
2,983 changes: 1,453 additions & 1,530 deletions package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pad-center",
"version": "1.1.3",
"description": "pad-center fills between the start and end characters with whatever character you want while maintaining the length.",
"version": "1.1.4",
"description": "pad-center fills between the start and end characters with character you want while maintaining the length.",
"license": "MIT",
"type": "module",
"exports": "./index.js",
Expand Down Expand Up @@ -32,14 +32,14 @@
"masking"
],
"devDependencies": {
"@types/jest": "^28.1.8",
"eslint": "^8.23.0",
"@types/jest": "^29.4.0",
"eslint": "^8.35.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^39.3.6",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"typescript": "^4.8.3"
"eslint-plugin-jsdoc": "^40.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.1.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.js": [
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"**/*.js"
],
"exclude": [
"**/*.test.js",
"update-dependencies.js"
"**/*.test.js"
],
"compilerOptions": {
"declaration": true,
Expand Down
19 changes: 0 additions & 19 deletions update-dependencies.js

This file was deleted.