@mrfrend/core 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrfrend/core",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Core utilities and shared setup",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",
@@ -1,22 +0,0 @@
1
- name: Publish
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
- jobs:
8
- publish:
9
- runs-on: ubuntu-latest
10
- steps:
11
- - uses: actions/checkout@v4
12
- - name: Set up Node.js
13
- uses: actions/setup-node@v4
14
- with:
15
- node-version: 20
16
- registry-url: "https://registry.npmjs.org/"
17
- - name: Install dependencies
18
- run: npm install
19
- - name: Publish package
20
- run: npm publish
21
- env:
22
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}