Skip to content

Commit a47d48d

Browse files
authored
Merge pull request #20 from TrilonIO/fix/publish-action
Fix/publish action
2 parents a5a3fef + 9a15ec4 commit a47d48d

File tree

3 files changed

+43
-5
lines changed

3 files changed

+43
-5
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
registry-url: https://registry.npmjs.org/
3030
scope: '@trilon'
3131
- run: yarn install --frozen-lockfile
32-
- run: yarn npm publish
32+
- run: yarn npm publish --access public
3333
env:
3434
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

README.md

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,34 @@
1-
# Trilon eslint-plugin
1+
# Trilon ESLint Plugin
2+
3+
[![Apache-2.0 license](https://img.shields.io/badge/license-Apache-blue.svg?style=for-the-badge&color=e51384)](/LICENSE)
4+
5+
6+
<!--[![NPM Downloads](https://img.shields.io/npm/dt/@trilon/ng-universal.svg?color=b31ae7&style=for-the-badge)](https://www.npmjs.com/@trilon/ng-universal)-->
7+
8+
9+
---
10+
11+
<p align="center">
12+
<a href="https://trilon.io" target="_blank">
13+
<img width="500" height="auto" src="https://trilon.io/trilon-logo-clear.png" alt="Trilon.io - Angular Universal, NestJS, JavaScript Application Consulting Development and Training">
14+
</a>
15+
</p>
16+
17+
18+
<h3 align="center"> Made with :heart: by <a href="https://trilon.io">Trilon.io</a></h3>
19+
20+
---
221

322
[![Node.js CI](https://github.com/TrilonIO/eslint-plugin/actions/workflows/node-ci.yml/badge.svg)](https://github.com/TrilonIO/eslint-plugin/actions/workflows/node-ci.yml)
423

524
At Trilon, our goal is to help elevate teams - giving them the push they need to continuously succeed in today's ever-changing tech world.
625

726
As part of that, we focus on developing tools that make **your** dev experience easier, enjoyable, and safer.
827

9-
The official Trilon Eslint Plugin is part of that toolbelt to help your team to thrive, applying best practices for NestJS, curated by our key contributors and core team.
28+
The official Trilon ESLint Plugin is part of that toolbelt to help your team to thrive, applying best practices for NestJS, curated by our key contributors and core team.
1029

1130
## Installation
1231

13-
> Once this package gets published
14-
1532
```sh
1633
npm install @trilon/eslint-plugin
1734
```
@@ -33,3 +50,23 @@ The "recommended" preset contains the rules listed below. If you need custom con
3350
| ------------------------------------------------------------------------------------ | -------------------------------------------------------------- | ----------- |
3451
| [`@trilon/enforce-close-testing-module`](docs/rules/enforce-close-testing-module.md) | Ensures NestJS testing modules are closed properly after tests ||
3552
| [`@trilon/check-inject-decorator`](docs/rules/check-inject-decorator.md) | Detects incorrect usage of `@Inject(TOKEN)` decorator ||
53+
54+
---
55+
56+
# Trilon Consulting
57+
58+
## JavaScript, Node, NestJS Consulting from Open-Source Fanatics and Key Contributors!
59+
60+
Check out **[Trilon.io](https://Trilon.io)** for more info!
61+
62+
Contact us at <hello@trilon.io>, and let's talk about your projects needs.
63+
64+
<br><br>
65+
66+
<p align="center">
67+
<a href="https://trilon.io" target="_blank">
68+
<img width="500" height="auto" src="https://trilon.io/trilon-logo-clear.png" alt="Trilon.io - Angular Universal, NestJS, JavaScript Application Consulting Development and Training">
69+
</a>
70+
</p>
71+
72+
<h3 align="center"> Made with :heart: by <a href="https://trilon.io">Trilon.io</a></h3>

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ const plugin = {
1616
},
1717
};
1818

19+
// @ts-expect-error Still have to investigate why this is failing
1920
module.exports = plugin;

0 commit comments

Comments
 (0)