Skip to content

Commit bb99df2

Browse files
authored
chore: Update dev tools config imports (#3279)
1 parent d0f42c9 commit bb99df2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.ocularrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @typedef {import('ocular-dev-tools').OcularConfig} OcularConfig */
1+
/** @typedef {import('@vis.gl/dev-tools').OcularConfig} OcularConfig */
22

33
import {dirname, join} from 'path';
44
import {fileURLToPath} from 'url';

babel.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @ts-ignore
2-
const {getBabelConfig} = require('ocular-dev-tools/configuration');
2+
const {getBabelConfig} = require('@vis.gl/dev-tools/configuration');
33

44
const config = getBabelConfig({
55
react: true,

examples/babel.config.local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable */
2-
const {getBabelConfig} = require('ocular-dev-tools');
2+
const {getBabelConfig} = require('@vis.gl/dev-tools/configuration');
33

44
module.exports = (api) => {
55
const config = getBabelConfig(api);

test/apps/babel.config.local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable */
2-
const {getBabelConfig} = require('ocular-dev-tools');
2+
const {getBabelConfig} = require('@vis.gl/dev-tools/configuration');
33

44
module.exports = (api) => {
55
const config = getBabelConfig(api);

test/apps/webpack.config.local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
const webpack = require('webpack');
88
const resolve = require('path').resolve;
99
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
10-
const {getOcularConfig} = require('ocular-dev-tools');
10+
const {getOcularConfig} = require('@vis.gl/dev-tools/configuration');
1111
const ALIASES = getOcularConfig({root: resolve(__dirname, '..')}).aliases;
1212
const ROOT_DIR = resolve(__dirname, '..');
1313
const LERNA_INFO = require(resolve(ROOT_DIR, 'lerna.json'));

0 commit comments

Comments
 (0)