@juantroconisf/lib 1.7.1 → 1.8.1

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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Changesets
2
+
3
+ Nothing to see here...
package/package.json CHANGED
@@ -1,20 +1,23 @@
1
1
  {
2
2
  "name": "@juantroconisf/lib",
3
- "version": "1.7.1",
3
+ "version": "1.8.1",
4
4
  "description": "",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./types/types.d.ts",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "types/types.d.ts",
8
8
  "scripts": {
9
- "build": "tsup"
9
+ "build": "tsup src/index.ts --format cjs,esm --dts",
10
+ "lint": "tsc"
10
11
  },
11
12
  "author": "Juan T",
12
13
  "license": "ISC",
13
14
  "bugs": {
14
15
  "url": "https://github.com/juandiegotroconis/lib/issues"
15
16
  },
17
+ "typings": "dist/index.d.ts",
16
18
  "homepage": "https://github.com/juandiegotroconis/lib#readme",
17
19
  "devDependencies": {
20
+ "tsup": "^8.2.4",
18
21
  "typescript": "^5.5.4"
19
22
  }
20
23
  }
@@ -1,23 +0,0 @@
1
- name: "JS Package"
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- release:
10
- name: 🚀 release
11
- runs-on: ubuntu-latest
12
- steps:
13
- - name: 📚 checkout
14
- uses: actions/checkout@v4
15
- - name: 🟢 node
16
- uses: actions/setup-node@v4
17
- with:
18
- node-version: "20.x"
19
- registry-url: https://registry.npmjs.org
20
- - name: 🚀 publish
21
- run: npm publish --access public
22
- env:
23
- NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}