@leverege/build-tools 2.105.1 → 2.105.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/yarn-build.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.105.
|
|
3
|
+
"version": "2.105.3",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -87,10 +87,10 @@
|
|
|
87
87
|
"execa": "^9.6.1",
|
|
88
88
|
"find-yarn-workspace-root": "^2.0.0",
|
|
89
89
|
"glob": "^13.0.6",
|
|
90
|
-
"googleapis": "^
|
|
90
|
+
"googleapis": "^173.0.0",
|
|
91
91
|
"handlebars": "^4.7.9",
|
|
92
92
|
"ignore": "^7.0.5",
|
|
93
|
-
"inquirer": "
|
|
93
|
+
"inquirer": "14.0.0",
|
|
94
94
|
"js-yaml": "^4.1.1",
|
|
95
95
|
"jsdoc": "^4.0.5",
|
|
96
96
|
"ms": "^2.1.3",
|
package/src/yarn-build.mjs
CHANGED
|
@@ -43,7 +43,7 @@ await $$`mkdir -p ${buildDir}`.catch( () => {} )
|
|
|
43
43
|
log( 'Ensuring yarn bundle plugin...' )
|
|
44
44
|
let plugins = $.sync`yarn plugin runtime --json`.stdout.trim()
|
|
45
45
|
plugins = plugins != null && plugins.length > 0 ? plugins.split( '\n' ).map( JSON.parse ) : []
|
|
46
|
-
if ( !plugins.some( plg => plg.name === '@yarn.build/plugin-bundle' ) ) {
|
|
46
|
+
if ( !plugins.some( plg => plg.name === '@yarn.build/plugin-bundle' || plg.name === '@yarnpkg/plugin-bundle' ) ) {
|
|
47
47
|
log( chalk.redBright( 'Yarn bundle plugin missing!' ) )
|
|
48
48
|
log( `To fix this error, run:\n${chalk.green( 'yarn plugin import https://yarn.build/latest/bundle' )}` )
|
|
49
49
|
process.exit( 1 )
|