Skip to content

Commit

Permalink
release: v0.10.12
Browse files Browse the repository at this point in the history
  • Loading branch information
cloydlau committed Sep 6, 2023
1 parent 229cfdb commit e2d06b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "json-editor-vue",
"PascalCasedName": "JsonEditorVue",
"version": "0.10.11",
"version": "0.10.12",
"private": false,
"description": "JSON editor & viewer for Vue 2.6/2.7/3 & Nuxt 2/3.",
"author": "Cloyd Lau",
Expand Down Expand Up @@ -35,6 +35,7 @@
"files": [
"dist",
"docs",
"scripts",
"nuxt.ts"
],
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions scripts/postinstall.mts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import process from 'node:process'
import spawn from 'cross-spawn'

console.log(123, process.env.INIT_CWD)
console.log(456, process.cwd())

// simple-git-hooks might not be installed when installing json-editor-vue as a dependency
if (process.env.INIT_CWD !== process.cwd()) {
process.exit()
Expand Down

0 comments on commit e2d06b8

Please sign in to comment.