mirror of
https://github.com/apache/superset.git
synced 2026-07-11 17:25:31 +00:00
Signed-off-by: hainenber <dotronghai96@gmail.com> Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
64 lines
2.4 KiB
JavaScript
64 lines
2.4 KiB
JavaScript
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
const { execSync } = require("child_process");
|
|
const { name, version } = require("./package.json");
|
|
|
|
function log(...args) {
|
|
console.log("[embedded-sdk-release]", ...args);
|
|
}
|
|
|
|
function logError(...args) {
|
|
console.error("[embedded-sdk-release]", ...args);
|
|
}
|
|
|
|
(async () => {
|
|
log(`checking if ${name}@${version} needs releasing`);
|
|
|
|
const packageUrl = `https://registry.npmjs.org/${name}/${version}`;
|
|
// npm commands output a bunch of garbage in the edge cases,
|
|
// and require sending semi-validated strings to the command line,
|
|
// so let's just use good old http.
|
|
const { status } = await fetch(packageUrl);
|
|
|
|
if (status === 200) {
|
|
log("version already exists on npm, exiting");
|
|
} else if (status === 404) {
|
|
log("release required, building");
|
|
try {
|
|
execSync("npm run build", { stdio: "pipe" });
|
|
log("build successful, publishing");
|
|
execSync("npm publish --access public", { stdio: "pipe" });
|
|
log(`published ${version} to npm`);
|
|
} catch (err) {
|
|
// npm writes failure details to stderr (auth/permission/registry
|
|
// errors in particular), so surface both streams to avoid masking
|
|
// the real cause in CI logs.
|
|
if (err.stdout) console.error(String(err.stdout));
|
|
if (err.stderr) console.error(String(err.stderr));
|
|
logError("Encountered an error, details should be above");
|
|
process.exitCode = 1;
|
|
}
|
|
} else {
|
|
logError(`ERROR: Received unexpected http status code ${status} from GET ${packageUrl}
|
|
The embedded sdk release script might need to be fixed, or maybe you just need to try again later.`);
|
|
process.exitCode = 1;
|
|
}
|
|
})();
|