Skip to content

Commit

Permalink
REadme.md update
Browse files Browse the repository at this point in the history
  • Loading branch information
vkruglikov committed Jan 5, 2025
1 parent 1c424a3 commit c46a809
Show file tree
Hide file tree
Showing 11 changed files with 1,133 additions and 40 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "master",
"updateInternalDependencies": "patch",
"ignore": []
}
35 changes: 35 additions & 0 deletions .github/workflows/connect.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Deploy @msw-devtools/connect

on:
push:
branches: ['master']
paths:
- 'packages/connect/package.json'
- '.github/workflows/connect.yml'

jobs:
release:
name: Build and Release
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- uses: ./.github/actions/setup-node
- uses: ./.github/actions/install-npm-deps

- name: Build @msw-devtools/connect
run: npm run build -- --filter=@msw-devtools/connect

- name: Publish
uses: changesets/action@master
with:
publish: npm run build -- --filter=@msw-devtools/connect && npx changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Switch seamlessly between multiple JSON configurations within the same host envi

<img width="300px" src="./media/extension/multi-configs.png" />

### 🔄 Edit json config in the DevTools
WORK IN PROGRESS.....
### 🔄 Edit json config in the DevTools
<img src="https://img.shields.io/badge/WIP-roadmap_feature-ff6a33" />

## Motivation 💡

Expand Down Expand Up @@ -70,4 +70,4 @@ Chrome Extension is not yet published to Chrome Web Store.

You can only install it downloading the build and loading it as an unpacked extension.

[![Download Chrome Extension](https://img.shields.io/badge/download-chrome_extension_dist-brightgreen)](https://github.com/vkruglikov/msw-devtools-extension/releases/download/latest/dist.zip)
[![Download Chrome Extension](https://img.shields.io/badge/download-chrome_extension_dist-ff6a33)](https://github.com/vkruglikov/msw-devtools-extension/releases/download/latest/dist.zip)
Loading

0 comments on commit c46a809

Please sign in to comment.