Skip to content

Commit

Permalink
Merge pull request #20 from privacybydesign/update-deps
Browse files Browse the repository at this point in the history
Update dependencies, fixing vulnerability in PostCSS
  • Loading branch information
bobhageman authored Oct 11, 2023
2 parents f337c9a + 3de527e commit 6fa04ec
Show file tree
Hide file tree
Showing 50 changed files with 4,154 additions and 4,398 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v2
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run lint
Expand All @@ -27,10 +27,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v2
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'npm'
- run: npm ci
- run: cd ./yivi-css && npm run clean
Expand Down
2 changes: 1 addition & 1 deletion examples/node/yivi-client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ yivi.use(Client);
yivi
.start()
.then((result) =>
console.log('Successful disclosure! 🎉', util.inspect(result, { showHidden: false, depth: null, colors: true }))
console.log('Successful disclosure! 🎉', util.inspect(result, { showHidden: false, depth: null, colors: true })),
)
.catch((error) => console.error("Couldn't do what you asked 😢", error));
2 changes: 1 addition & 1 deletion examples/node/yivi-console/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ yivi.use(Dummy);
yivi
.start()
.then((result) =>
console.log('Successful disclosure! 🎉', util.inspect(result, { showHidden: false, depth: null, colors: true }))
console.log('Successful disclosure! 🎉', util.inspect(result, { showHidden: false, depth: null, colors: true })),
)
.catch((error) => console.error("Couldn't do what you asked 😢", error));
Loading

0 comments on commit 6fa04ec

Please sign in to comment.