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: poppinss/youch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 61a1a0027576c17b8d21bcf47d9caab793aa1908
Choose a base ref
...
head repository: poppinss/youch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ad9c69365ca83bc2fa009513d8901ba32ab6f103
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 23, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d63166d View commit details
  2. chore(release): 3.3.2

    thetutlage committed Sep 23, 2023
    Copy the full SHA
    ad9c693 View commit details
Showing with 2 additions and 3 deletions.
  1. +1 −1 package.json
  2. +1 −2 src/Youch.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "youch",
"version": "3.3.1",
"version": "3.3.2",
"description": "HTML Pretty error stack viewer",
"main": "src/Youch.js",
"files": [
3 changes: 1 addition & 2 deletions src/Youch.js
Original file line number Diff line number Diff line change
@@ -15,9 +15,8 @@ const cookie = require('cookie')
const Mustache = require('mustache')
const { fileURLToPath } = require('url')
const StackTracey = require('stacktracey')
const { serialize } = require('v8')
const VIEW_PATH = './error.compiled.mustache'

const VIEW_PATH = './error.compiled.mustache'
const viewTemplate = fs.readFileSync(path.join(__dirname, VIEW_PATH), 'utf-8')

class Youch {