ebely 0.0.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.
@@ -0,0 +1,8 @@
1
+ # Changesets
2
+
3
+ Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5
+ find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
+
7
+ We have a quick list of common questions to get you started engaging with this project in
8
+ [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
3
+ "changelog": "@changesets/cli/changelog",
4
+ "commit": false,
5
+ "fixed": [],
6
+ "linked": [],
7
+ "access": "public",
8
+ "baseBranch": "main",
9
+ "updateInternalDependencies": "patch",
10
+ "ignore": []
11
+ }
@@ -0,0 +1,5 @@
1
+ ---
2
+ "my-package": patch
3
+ ---
4
+
5
+ Added the add function
@@ -0,0 +1,21 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches:
5
+ - "**"
6
+
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - uses: pnpm/action-setup@v2
13
+ with:
14
+ version: 7
15
+ - uses: actions/setup-node@v3
16
+ with:
17
+ node-version: 16.x
18
+ cache: "pnpm"
19
+
20
+ - run: pnpm install --frozen-lockfile
21
+ - run: pnpm run lint && pnpm run build
@@ -0,0 +1,36 @@
1
+ name: Publish
2
+ on:
3
+ workflow_run:
4
+ workflows: [CI]
5
+ branches: [main]
6
+ types: [completed]
7
+
8
+ concurrency: ${{ github.workflow }}-${{ github.ref }}
9
+
10
+ permissions:
11
+ contents: write
12
+ pull-requests: write
13
+
14
+ jobs:
15
+ publish:
16
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+ - uses: pnpm/action-setup@v2
21
+ with:
22
+ version: 7
23
+ - uses: actions/setup-node@v3
24
+ with:
25
+ node-version: 16.x
26
+ cache: "pnpm"
27
+
28
+ - run: pnpm install --frozen-lockfile
29
+ - name: Create Release Pull Request or Publish
30
+ id: changesets
31
+ uses: changesets/action@v1
32
+ with:
33
+ publish: pnpm run release
34
+ env:
35
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ export const add = (a: number, b: number) => {
2
+ return a + b
3
+ }
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "ebely",
3
+ "license": "MIT",
4
+ "version": "0.0.1",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "tsup index.ts --format cjs,esm --dts",
10
+ "release": "pnpm run build && changeset publish",
11
+ "lint": "tsc"
12
+ },
13
+ "devDependencies": {
14
+ "@changesets/cli": "^2.26.0",
15
+ "tsup": "^6.5.0",
16
+ "typescript": "^4.9.4"
17
+ }
18
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "compilerOptions": {
3
+ /* Base Options: */
4
+ "esModuleInterop": true,
5
+ "skipLibCheck": true,
6
+ "target": "es2022",
7
+ "verbatimModuleSyntax": true,
8
+ "allowJs": true,
9
+ "resolveJsonModule": true,
10
+ "moduleDetection": "force",
11
+ /* Strictness */
12
+ "strict": true,
13
+ "noUncheckedIndexedAccess": true,
14
+ /* If NOT transpiling with TypeScript: */
15
+ "moduleResolution": "Bundler",
16
+ "module": "ESNext",
17
+ "noEmit": true,
18
+ /* If your code runs in the DOM: */
19
+ "lib": ["es2022", "dom", "dom.iterable"],
20
+ }
21
+ }