taraskevizer 0.0.1 → 0.0.2

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,16 +1,28 @@
1
1
  {
2
2
  "name": "taraskevizer",
3
+ "author": "GooseOb",
3
4
  "license": "MIT",
4
- "version": "0.0.1",
5
+ "version": "0.0.2",
6
+ "private": false,
7
+ "homepage": "https://gooseob.github.io/taraskevizatar/",
5
8
  "main": "dist/index.js",
6
9
  "module": "dist/index.mjs",
7
10
  "types": "dist/index.d.ts",
8
11
  "scripts": {
9
- "build": "tsup",
10
- "release": "npm run build && changeset publish"
12
+ "build": "tsup"
11
13
  },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/GooseOb/taraskevizer.git"
17
+ },
18
+ "keywords": [
19
+ "taraskevizatar",
20
+ "taraskevica",
21
+ "тарашкевіца",
22
+ "тарашкевізатар",
23
+ "belarusian"
24
+ ],
12
25
  "devDependencies": {
13
- "@changesets/cli": "^2.26.0",
14
26
  "prettier": "^3.0.0",
15
27
  "tsup": "^6.5.0",
16
28
  "typescript": "^4.9.4"
@@ -1,8 +0,0 @@
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)
@@ -1,11 +0,0 @@
1
- {
2
- "$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
3
- "changelog": "@changesets/cli/changelog",
4
- "commit": false,
5
- "fixed": [],
6
- "linked": [],
7
- "access": "restricted",
8
- "baseBranch": "main",
9
- "updateInternalDependencies": "patch",
10
- "ignore": []
11
- }
@@ -1,33 +0,0 @@
1
- name: Publish
2
- on:
3
- workflow_run:
4
- workflows: ["CI"]
5
- types:
6
- - completed
7
- push:
8
- branches:
9
- - "main"
10
-
11
- concurrency: ${{ github.workflow }}-${{ github.ref }}
12
-
13
- jobs:
14
- publish:
15
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
16
- runs-on: ubuntu-latest
17
- steps:
18
- - uses: actions/checkout@v3
19
- with:
20
- version: 7
21
- - uses: actions/setup-node@v3
22
- with:
23
- node-version: 16.x
24
-
25
- - run: npm ci
26
- - name: Create Release Pull Request or Publish
27
- id: changesets
28
- uses: changesets/action@v1
29
- with:
30
- publish: npm run release
31
- env:
32
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}