Chore: don't create the npm-artifacts dir since yarn packages:pack does this… (#62246)

* don't create the npm-artifacts dir since yarn packages:pack does this already

* fix an any to trigger a canary build
pull/62228/head
Ashley Harrison 3 years ago committed by GitHub
parent 284ca4eab4
commit a344c88a01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      packages/grafana-ui/src/components/TimeSeries/utils.test.ts
  2. 4
      scripts/circle-release-canary-packages.sh

@ -1,11 +1,10 @@
import { ArrayVector, FieldType } from '@grafana/data';
import { ArrayVector, EventBus, FieldType } from '@grafana/data';
import { getTheme } from '@grafana/ui';
import { preparePlotConfigBuilder } from './utils';
describe('when fill below to option is used', () => {
// eslint-disable-next-line
let eventBus: any;
let eventBus: EventBus;
// eslint-disable-next-line
let renderers: any[];
// eslint-disable-next-line

@ -15,10 +15,6 @@ else
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc
if [ ! -d './npm-artifacts' ]; then
mkdir './npm-artifacts'
fi
echo $'\nPacking packages'
yarn packages:pack

Loading…
Cancel
Save