Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: uiwjs/react-github-corners
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.0
Choose a base ref
...
head repository: uiwjs/react-github-corners
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.5.1
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Aug 29, 2021

  1. Copy the full SHA
    023088e View commit details
  2. Copy the full SHA
    c6c0670 View commit details
  3. chore: update .gitignore

    jaywcjlove committed Aug 29, 2021
    Copy the full SHA
    449ff65 View commit details
  4. released v1.5.1

    jaywcjlove committed Aug 29, 2021
    Copy the full SHA
    ed1ee17 View commit details
Showing with 7 additions and 5 deletions.
  1. +1 −0 .github/workflows/ci.yml
  2. +1 −0 .gitignore
  3. +3 −2 README.md
  4. +2 −3 package.json
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@ jobs:

- run: npm install
- run: npm run build
- run: npm run doc

- name: Create Tag
id: create_tag
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ build
npm-debug.log*
package-lock.json
node_modules
w-github-corners.css

.DS_Store
.cache
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ Runs the project in development mode.

```bash
# Step 1, run first, listen to the component compile and output the .js file
npm run ts:watch
npm run build
# Step 2, listen for compilation output type .d.ts file
npm run types:watch
# Step 3, development mode, listen to compile preview website instance
@@ -101,7 +101,8 @@ npm run doc:dev
Builds the app for production to the build folder.

```bash
npm run released
npm run build
npm run doc
```

The build is minified and the filenames include the hashes.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"name": "@uiw/react-github-corners",
"version": "1.5.0",
"version": "1.5.1",
"description": "Add a Github corner to your project page, This GitHub corners for react component.",
"main": "cjs/index.js",
"module": "esm/index.js",
"scripts": {
"prepare": "npm run build",
"released": "npm run build && npm run doc",
"doc": "kkt build --app-src ./website",
"start": "kkt start --app-src ./website",
"css:build": "compile-less -d src -o esm",
"css:watch": "compile-less -d src -o esm --watch",
"css:build:dist": "compile-less -d src --combine w-github-corners.css --rm-global",
"watch": "tsbb watch",
"build": "tsbb build"
"build": "tsbb build && npm run css:build && npm run css:build:dist"
},
"homepage": "https://uiwjs.github.io/react-github-corners",
"repository": {