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: markedjs/marked
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.7
Choose a base ref
...
head repository: markedjs/marked
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.2.8
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 14, 2023

  1. 1
    Copy the full SHA
    60c3b7f View commit details
  2. chore(release): 4.2.8 [skip ci]

    ## [4.2.8](v4.2.7...v4.2.8) (2023-01-14)
    
    ### Bug Fixes
    
    * build in postversion for build file version ([60c3b7f](60c3b7f))
    semantic-release-bot committed Jan 14, 2023
    1
    Copy the full SHA
    5ca781e View commit details
Showing with 5 additions and 17 deletions.
  1. +0 −13 .github/workflows/tests.yml
  2. +2 −2 package-lock.json
  3. +3 −2 package.json
13 changes: 0 additions & 13 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -74,19 +74,6 @@ jobs:
node-version: 'lts/*'
- name: Install Dependencies
run: npm ci
- name: Build 🗜️
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
export SEMANTIC_RELEASE_NEXT_VERSION=$(npx semantic-release --no-ci --dry-run | grep -oP 'The next release version is \K[0-9]+\.[0-9]+\.[0-9]+')
echo "Next Version: $SEMANTIC_RELEASE_NEXT_VERSION"
npm run build
if ! git diff --quiet; then
git config --global user.email "<>"
git config --global user.name "MarkedJS bot"
git commit -am "🗜️ build [skip ci]"
fi
- name: Release 🎉
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "marked",
"description": "A markdown parser built for speed",
"author": "Christopher Jeffrey",
"version": "4.2.7",
"version": "4.2.8",
"type": "module",
"main": "./lib/marked.cjs",
"module": "./lib/marked.esm.js",
@@ -85,7 +85,8 @@
"build": "npm run rollup && npm run minify",
"build:docs": "node build-docs.js",
"rollup": "rollup -c rollup.config.js",
"minify": "uglifyjs lib/marked.umd.js -cm --comments /Copyright/ -o marked.min.js"
"minify": "uglifyjs lib/marked.umd.js -cm --comments /Copyright/ -o marked.min.js",
"postversion": "npm run build"
},
"engines": {
"node": ">= 12"