Skip to content

Commit d429c63

Browse files
committed
Merge branch 'master' into develop
2 parents a4d9c1a + 37d034c commit d429c63

File tree

9 files changed

+265
-74
lines changed

9 files changed

+265
-74
lines changed

.github/workflows/release.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Publish NPM Package
2+
3+
on:
4+
push:
5+
tags: [v*]
6+
7+
jobs:
8+
publish:
9+
name: Build and publish to NPM
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v3
14+
15+
- name: Setup Node
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '16.x'
19+
registry-url: 'https://registry.npmjs.org'
20+
cache: npm
21+
cache-dependency-path: package-lock.json
22+
23+
- name: Install dependencies
24+
run: npm ci
25+
26+
- name: Publish package
27+
run: npm publish --access=public
28+
env:
29+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
30+
31+
- name: Release
32+
uses: softprops/action-gh-release@v1
33+
with:
34+
generate_release_notes: true

.gitpod.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This configuration file was automatically generated by Gitpod.
2+
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3+
# and commit this file to your remote git repository to share the goodness with others.
4+
5+
tasks:
6+
- init: npm install && npm run build
7+
command: npm run watch
8+
9+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Splitter
2-
Splitter is a React component that allows you to split views into resizable panels. Similar to tabs in Visual Studio Code, for example. It's used in [Devbook](https://usedevbook.com) - A Search Engine for Developers.
2+
Splitter is a React component that allows you to split views into resizable panels. Similar to tabs in Visual Studio Code, for example.
33
Here's a gif of what you can build with Splitter:
44
![](example.gif)
55

package-lock.json

Lines changed: 167 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)