chore: small fixes (#11797)

This commit is contained in:
Nikolay Vitkov 2024-01-31 16:01:27 +01:00 committed by GitHub
parent 6e59e357d2
commit 67d6e89021
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 20 additions and 14 deletions

View File

@ -357,7 +357,7 @@ jobs:
path: puppeteer-test-installation-latest.tgz
installation-test:
name: ${{ matrix.pkg_manager }} installation on ${{ matrix.os }} (${{ matrix.node }})
name: ${{ matrix.pkg_manager }} installation on ${{ matrix.os }}
needs: installation-test-build
if: ${{ !startsWith(github.ref_name, 'release-please') }}
runs-on: ${{ matrix.os }}
@ -387,7 +387,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version-file: ${{ needs.installation-test-build.node-version }}
node-version: ${{ needs.installation-test-build.outputs.node-version }}
- name: Install dependencies
run: ${{ matrix.pkg_manager }} install
- name: Test

View File

@ -6,7 +6,7 @@
"build:docs": "wireit",
"build": "wireit",
"build:test": "wireit",
"clean": "../../tools/clean.js",
"clean": "../../tools/clean.mjs",
"test": "wireit"
},
"type": "commonjs",

View File

@ -4,7 +4,7 @@
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.js",
"clean": "../../tools/clean.mjs",
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
"unit": "wireit"

View File

@ -37,7 +37,7 @@
"build:docs": "wireit",
"build": "wireit",
"check": "tsx tools/ensure-correct-devtools-protocol-package",
"clean": "../../tools/clean.js",
"clean": "../../tools/clean.mjs",
"prepack": "wireit",
"unit": "wireit"
},

View File

@ -37,7 +37,7 @@
"scripts": {
"build:docs": "wireit",
"build": "wireit",
"clean": "../../tools/clean.js",
"clean": "../../tools/clean.mjs",
"postinstall": "node install.mjs",
"prepack": "wireit"
},

View File

@ -5,7 +5,7 @@
"main": "lib/index.js",
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.js"
"clean": "../../tools/clean.mjs"
},
"wireit": {
"build": {

View File

@ -5,7 +5,7 @@
"private": true,
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.js",
"clean": "../../tools/clean.mjs",
"test": "mocha"
},
"wireit": {

View File

@ -4,7 +4,7 @@
"private": true,
"scripts": {
"build": "wireit",
"clean": "../tools/clean.js"
"clean": "../tools/clean.mjs"
},
"wireit": {
"build": {

View File

@ -1,7 +1,13 @@
#!/usr/bin/env node
const {exec} = require('child_process');
const {readdirSync} = require('fs');
/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import {exec} from 'child_process';
import {readdirSync} from 'fs';
exec(
`git clean -Xf ${readdirSync(process.cwd())

View File

@ -8,7 +8,7 @@
"license": "Apache-2.0",
"scripts": {
"build": "wireit",
"clean": "../clean.js"
"clean": "../clean.mjs"
},
"wireit": {
"build": {

View File

@ -8,7 +8,7 @@
"license": "Apache-2.0",
"scripts": {
"build": "wireit",
"clean": "../clean.js"
"clean": "../clean.mjs"
},
"wireit": {
"build": {

View File

@ -9,7 +9,7 @@
"scripts": {
"build": "wireit",
"test": "wireit",
"clean": "../clean.js"
"clean": "../clean.mjs"
},
"wireit": {
"build": {