vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
413 B
18 lines
413 B
'use strict'; |
|
|
|
// NOTE: the following code was partially adopted from https://github.com/iarna/in-publish |
|
module.exports = function getNpmArgs() { |
|
let npmArgv = null; |
|
|
|
try { |
|
npmArgv = JSON.parse(process.env.npm_config_argv); |
|
} catch (err) { |
|
return null; |
|
} |
|
|
|
if (typeof npmArgv !== 'object' || !npmArgv.cooked || !Array.isArray(npmArgv.cooked)) { |
|
return null; |
|
} |
|
|
|
return npmArgv.cooked; |
|
};
|
|
|