]> source.dussan.org Git - jquery.git/commitdiff
Build: use --input-type=module in npm scripts
authorTimmy Willison <timmywil@users.noreply.github.com>
Tue, 23 Jul 2024 14:59:06 +0000 (10:59 -0400)
committerTimmy Willison <timmywil@users.noreply.github.com>
Mon, 29 Jul 2024 19:25:14 +0000 (15:25 -0400)
Ref gh-5522

package.json

index adc2f22450d586628362550d4bed5e7d654f978e..5aff08ef6af71f86189aab746e8ac187dfc71130 100644 (file)
@@ -5,13 +5,13 @@
   "version": "3.7.1",
   "main": "dist/jquery.js",
   "scripts": {
-    "authors:check": "node -e \"(async () => { const { checkAuthors } = await import('./build/release/authors.js'); checkAuthors() })()\"",
-    "authors:update": "node -e \"(async () => { const { updateAuthors } = await import('./build/release/authors.js'); updateAuthors() })()\"",
+    "authors:check": "node --input-type=module -e \"import { checkAuthors } from './build/release/authors.js'; checkAuthors()\"",
+    "authors:update": "node --input-type=module -e \"import { updateAuthors } from './build/release/authors.js'; updateAuthors()\"",
     "babel:tests": "babel test/data/core/jquery-iterability-transpiled-es6.js --out-file test/data/core/jquery-iterability-transpiled.js",
     "build": "node ./build/command.js",
-    "build:all": "node -e \"(async () => { const { buildDefaultFiles } = await import('./build/tasks/build.js'); buildDefaultFiles() })()\"",
+    "build:all": "node --input-type=module -e \"import { buildDefaultFiles } from './build/tasks/build.js'; buildDefaultFiles()\"",
     "build:clean": "rimraf --glob dist/*.{js,map} --glob dist-module/*.{js,map}",
-    "build:main": "node -e \"(async () => { const { build } = await import('./build/tasks/build.js'); build() })()\"",
+    "build:main": "node --input-type=module -e \"import { build } from './build/tasks/build.js'; build()\"",
     "lint:dev": "eslint --cache .",
     "lint:json": "jsonlint --quiet package.json",
     "lint": "concurrently -r \"npm:lint:dev\" \"npm:lint:json\"",