From 0f2c3fa57a9a1a4df60ec0fbef979cfff874627c Mon Sep 17 00:00:00 2001 From: Viktor <8722478+binjospookie@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:11:47 +0300 Subject: [PATCH] fixed: build --- .github/workflows/publish.yml | 18 ------------------ CHANGELOG.md | 6 ++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 9 insertions(+), 21 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 6192e30..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Publish to npm - -on: - release: - types: [created] - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '20' - - run: npm ci - - uses: JS-DevTools/npm-publish@v3 - with: - token: ${{ secrets.NPM_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d98447..a415a3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ title: Change Log The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](http://semver.org). +## 1.0.1 + +### Fixed + +- build flow + ## 1.0.0 ### Changed diff --git a/package-lock.json b/package-lock.json index 64d0350..7956983 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pure-index", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pure-index", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "@swc/core": "1.3.103", diff --git a/package.json b/package.json index 44cee10..4c0e7f1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pure-index", "type": "module", - "version": "1.0.0", + "version": "1.0.1", "description": "Pure Index is a tool for packages. It helps to clean your packages of unused exports with ease.", "main": "./dist/api/index.js", "types": "./dist/api/index.d.ts",