Skip to content

Commit

Permalink
fix: adjust npmrc
Browse files Browse the repository at this point in the history
  • Loading branch information
lukascivil committed Aug 6, 2023
1 parent 212680a commit d68e5f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ jobs:
with:
main-branch-name: 'master'

- name: Set npmrc
run: echo '//npm.pkg.github.com/:_authToken=${NPM_TOKEN}' > .npmrc

- run: ls
- run: |
echo "BASE: ${{ steps.setSHAs.outputs.base }}"
echo "HEAD: ${{ steps.setSHAs.outputs.head }}"
- name: Set npmrc
run: echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc

- name: Check npm credentials
run: npm whoami

Expand Down
2 changes: 1 addition & 1 deletion libs/json-difference/src/core/get-edited-paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import { EditedPath, StructPaths } from '../models/jsondiffer.model'
*
* const result = getEditedPaths(oldStruct, newStruct)
*
* console.log(result)
* // Output: [1, null ,"coffee"]
* console.log(result)
*/
export const getEditedPaths = (oldStructPaths: StructPaths, newStructPaths: StructPaths): Array<EditedPath> => {
const diffs: Array<EditedPath> = []
Expand Down

0 comments on commit d68e5f1

Please sign in to comment.