Skip to content
This repository was archived by the owner on Feb 25, 2024. It is now read-only.

Commit 9b097bd

Browse files
committed
2 parents d7f5a82 + 7bcc7a6 commit 9b097bd

File tree

55 files changed

+185
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+185
-100
lines changed

.dependabot/config.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
labels:
9+
- dependabot
10+
- github-actions

.github/workflows/nodejs.yml renamed to .github/workflows/nodejs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
node: 14.x
4646
cmd: pnpm run sane-fmt -- --log-format=github-actions --details=diff
4747
steps:
48-
- uses: actions/checkout@v1
48+
- uses: actions/checkout@v2.3.4
4949
- name: Use Node.js ${{ matrix.vars.node }}
50-
uses: actions/setup-node@v1
50+
uses: actions/setup-node@v2.1.2
5151
with:
5252
node-version: ${{ matrix.vars.node }}
5353
- name: Cache PNPM store
54-
uses: actions/cache@v1.1.2
54+
uses: actions/cache@v2.1.3
5555
with:
5656
path: ~/.pnpm-store/v3
5757
key: pnpm5-${{ matrix.vars.id }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -60,7 +60,7 @@ jobs:
6060
pnpm5-${{ matrix.vars.id }}-
6161
pnpm5-
6262
- name: Install pnpm
63-
uses: pnpm/action-setup@v1.2.0
63+
uses: pnpm/action-setup@v1.2.1
6464
with:
6565
version: ${{ matrix.pnpm }}
6666
run_install: |

packages/hello-world/pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/scoped-hello-world/pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/hello-world/pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/package-manager/index.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import path from 'path'
2-
import { existsSync } from 'fs'
1+
import { project } from '@tools/places'
32
import { spawnSync } from 'child_process'
3+
import { existsSync } from 'fs'
4+
import path from 'path'
45
import semver from 'semver'
5-
import { project } from '@tools/places'
66

77
const mkfn = (file: string, pkgmgr: string) =>
88
() => {

test/package-manager/pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)