mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
* feat: embedded sdk
* correct values
* better version
* readme stuff
* release script
* doc
* oops
* better package description
* license
* that was invalid json
* Apply suggestions from code review
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com>
* Update superset-embedded-sdk/README.md
* a github workflow to make sure the build succeeds
* fix github workflows
* writing
* try a different trigger
* no point in a single unit matrix
* Revert "no point in a single unit matrix"
This reverts commit 90f78bfc98.
* workflow changes
* fix some scripts
* pull request types
* slight rename
* test list
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com>
48 lines
1.9 KiB
JavaScript
48 lines
1.9 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 axios = require('axios');
|
|
const { name, version } = require('./package.json');
|
|
|
|
(async () => {
|
|
console.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 axios.get(packageUrl, {
|
|
validateStatus: (status) => true // we literally just want the status so any status is valid
|
|
});
|
|
|
|
if (status === 200) {
|
|
console.log('version already exists on npm, exiting');
|
|
} else if (status === 404) {
|
|
console.log('release required, building');
|
|
execSync('npm run build');
|
|
execSync('npm publish --access public');
|
|
console.log(`published ${version} to npm`);
|
|
} else {
|
|
console.error(`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;
|
|
}
|
|
})();
|