generated from JS-DevTools/template-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add prettier for formatting and style checking (#72)
- Loading branch information
Showing
33 changed files
with
551 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dist | ||
lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dist | ||
lib | ||
package-lock.json |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,34 @@ | ||
Change Log | ||
==================================================================================================== | ||
# Change Log | ||
|
||
All notable changes will be documented in this file. | ||
NPM Publish adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
|
||
|
||
[v1.4.0](https://github.com/JS-DevTools/npm-publish/tree/v1.4.0) (2020-10-02) | ||
---------------------------------------------------------------------------------------------------- | ||
## [v1.4.0](https://github.com/JS-DevTools/npm-publish/tree/v1.4.0) (2020-10-02) | ||
|
||
- Added support NPM's `--tag` argument, which allows packages to be published to a named tag that can then be installed using `npm install <package-name>@<tag>` | ||
|
||
- Added support for NPM's `--access` argument, which controls whether scoped packages are publicly accessible, or restricted to members of your NPM organization | ||
|
||
[Full Changelog](https://github.com/JS-DevTools/npm-publish/compare/v1.3.0...v1.4.0) | ||
|
||
|
||
|
||
[v1.3.0](https://github.com/JS-DevTools/npm-publish/tree/v1.3.0) (2020-10-01) | ||
---------------------------------------------------------------------------------------------------- | ||
## [v1.3.0](https://github.com/JS-DevTools/npm-publish/tree/v1.3.0) (2020-10-01) | ||
|
||
- NPM-Publish can now successfully publish a brand-new package to NPM. Previously it failed because it couldn't determine the previous package version. ([PR #12](https://github.com/JS-DevTools/npm-publish/pull/12) from [@ZitRos](https://github.com/ZitRos)) | ||
|
||
[Full Changelog](https://github.com/JS-DevTools/npm-publish/compare/v1.2.0...v1.3.0) | ||
|
||
|
||
|
||
[v1.2.0](https://github.com/JS-DevTools/npm-publish/tree/v1.2.0) (2020-07-23) | ||
---------------------------------------------------------------------------------------------------- | ||
## [v1.2.0](https://github.com/JS-DevTools/npm-publish/tree/v1.2.0) (2020-07-23) | ||
|
||
- Added support for running NPM in "dry run" mode, which doesn't actually publish, but reports details of what _would_ have been published. | ||
|
||
[Full Changelog](https://github.com/JS-DevTools/npm-publish/compare/v1.1.2...v1.2.0) | ||
|
||
|
||
|
||
[v1.1.0](https://github.com/JS-DevTools/npm-publish/tree/v1.1.0) (2020-03-29) | ||
---------------------------------------------------------------------------------------------------- | ||
## [v1.1.0](https://github.com/JS-DevTools/npm-publish/tree/v1.1.0) (2020-03-29) | ||
|
||
- FIX: The configured NPM registry and token are now used _all_ NPM commands, not just for publishing. This ensures that npm-publish works with private packages and custom registries | ||
|
||
[Full Changelog](https://github.com/JS-DevTools/npm-publish/compare/v1.0.13...v1.1.0) | ||
|
||
|
||
|
||
[v1.0.0](https://github.com/JS-DevTools/npm-publish/tree/v1.0.0) (2020-01-21) | ||
---------------------------------------------------------------------------------------------------- | ||
## [v1.0.0](https://github.com/JS-DevTools/npm-publish/tree/v1.0.0) (2020-01-21) | ||
|
||
Initial release 🎉 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Contributing Guide | ||
|
||
Contributions, enhancements, and bug-fixes are welcome! [Open an issue](https://github.com/JS-DevTools/npm-publish/issues) on GitHub and [submit a pull request](https://github.com/JS-DevTools/npm-publish/pulls). | ||
|
||
## Building Locally | ||
|
||
You should be using Node.js v16 or later to build this project locally | ||
|
||
```shell | ||
# Clone this repository | ||
git clone https://github.com/JS-DevTools/npm-publish.git | ||
|
||
# Install dependencies* | ||
npm install | ||
|
||
# Build the code | ||
npm run build | ||
|
||
# Run the tests | ||
npm test | ||
``` | ||
|
||
There are also various code quality checks and tests you can run: | ||
|
||
```shell | ||
# Autoformat the code | ||
npm run format | ||
|
||
# Lint the code | ||
npm run lint | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.