aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/npmcopy.js
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2023-11-02 00:48:50 +0100
committerGitHub <noreply@github.com>2023-11-02 00:48:50 +0100
commitf47c6a83370675af0eff227d0266b40f9f45514a (patch)
tree4d6163e2cd876d9fad02f96bedb961bb172059ec /build/tasks/npmcopy.js
parent1ad66aeb6d7d94f8e4c8e2286569722ca41f9868 (diff)
downloadjquery-f47c6a83370675af0eff227d0266b40f9f45514a.tar.gz
jquery-f47c6a83370675af0eff227d0266b40f9f45514a.zip
Build: Update ESLint-related packages, fix linting errors
The main change is the new rule in `eslint-config-jquery`: `template-curly-spacing`. Closes gh-5347 Ref jquery/eslint-config-jquery#21 Ref gh-5348
Diffstat (limited to 'build/tasks/npmcopy.js')
-rw-r--r--build/tasks/npmcopy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tasks/npmcopy.js b/build/tasks/npmcopy.js
index c57acc2e7..750f26d8a 100644
--- a/build/tasks/npmcopy.js
+++ b/build/tasks/npmcopy.js
@@ -35,7 +35,7 @@ async function npmcopy() {
const toDir = path.dirname( to );
await fs.promises.mkdir( toDir, { recursive: true } );
await fs.promises.copyFile( from, to );
- console.log( `${source} → ${dest}` );
+ console.log( `${ source } → ${ dest }` );
}
}