Skip to content

Commit

Permalink
changed pushd to cd command (#1118)
Browse files Browse the repository at this point in the history
  • Loading branch information
JinIgarashi authored Jan 11, 2023
1 parent b062e24 commit 81f8600
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions apps/electricity-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prepack": "pushd package",
"postpack": "popd"
"prepack": "cd package",
"postpack": "cd .."
},
"private": false,
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/current-location/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prepack": "pushd package",
"postpack": "popd"
"prepack": "cd package",
"postpack": "cd .."
},
"private": false,
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/style-switcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prepack": "pushd package",
"postpack": "popd"
"prepack": "cd package",
"postpack": "cd .."
},
"private": false,
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/style-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prepack": "pushd package",
"postpack": "popd"
"prepack": "cd package",
"postpack": "cd .."
},
"private": false,
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/svelte-undp-design/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"format": "prettier --plugin-search-dir . --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o ../../sites/geohub/static/storybook",
"prepack": "pushd package",
"postpack": "popd"
"prepack": "cd package",
"postpack": "cd .."
},
"private": false,
"repository": {
Expand Down

0 comments on commit 81f8600

Please sign in to comment.