Skip to content

Commit

Permalink
chore(release): 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Frost committed Nov 20, 2024
1 parent bd5231f commit f3ddaf1
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 4 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Publish to npm

on:
push:
tags:
- 'v*.*.*'

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Build the package
run: npm run build

- name: Generate documentation
run: npm run docs

- name: Publish to npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --access public

- name: Create GitHub release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
body: |
🎉 New release ${{ github.ref_name }} published to npm!
View on npm: [@monadica/lazy-streams](https://www.npmjs.com/package/@monadica/lazy-streams?activeTab=readme)
draft: false
prerelease: false
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"codegraphy.connectionType": "Interaction",
"codegraphy.nodeSize": "Lines",
"codegraphy.showNodeModules": false,
"codegraphy.showOrphans": true,
"codegraphy.showLabels": true,
"codegraphy.showOutlines": true,
"codegraphy.showArrows": false,
"codegraphy.doCollisions": true,
"codegraphy.chargeForce": -100,
"codegraphy.linkDistance": 100,
"codegraphy.nodeColor": "D3",
"codegraphy.selectedD3Color": "Spectral",
"codegraphy.selectedNodeColor": "#fff",
"codegraphy.favoriteNodeColor": "#ffd700",
"codegraphy.outlineColor": "#ffd700"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.1.3](https://github.com/monadicarts/lazy-streams/compare/v1.1.2...v1.1.3) (2024-11-20)


### Bug Fixes

* fixed parcel wonkiness ([bd5231f](https://github.com/monadicarts/lazy-streams/commit/bd5231fe98cafaf7edfa5741b6e92a3e79a8b939))

### [1.1.2](https://github.com/monadicarts/lazy-streams/compare/v1.1.1...v1.1.2) (2024-11-20)

### [1.1.1](https://github.com/monadicarts/lazy-streams/compare/v1.1.0...v1.1.1) (2024-11-20)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@monadica/lazy-streams",
"version": "1.1.2",
"version": "1.1.3",
"source": "./src/index.ts",
"main": "./dist/main.js",
"types": "./dist/types.d.ts",
"module": "./dist/index.mjs",
"module": "./dist/main.js",
"browser": "./dist/index.js",
"type": "module",
"files": [
Expand Down

0 comments on commit f3ddaf1

Please sign in to comment.