Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
chore: move devDependencies to @krakenjs scope (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
westeezy authored Apr 9, 2022
1 parent 16ad589 commit d498da0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* @flow */

module.exports = {
'extends': './node_modules/grumbler-scripts/config/.eslintrc-browser.js',
'extends': './node_modules/@krakenjs/grumbler-scripts/config/.eslintrc-browser.js',

'globals': {
__POST_ROBOT__: true
Expand Down
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[libs]
flow-typed
src/declarations.js
node_modules/grumbler-scripts/declarations.js
node_modules/@krakenjs/grumbler-scripts/declarations.js
[options]
module.name_mapper='^src\(.*\)$' -> '<PROJECT_ROOT>/src/\1'
experimental.const_params=false
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

// eslint-disable-next-line import/no-commonjs
module.exports = {
extends: 'grumbler-scripts/config/.babelrc-node'
extends: '@krakenjs/grumbler-scripts/config/.babelrc-node'
};
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* @flow */
/* eslint import/no-default-export: off */

import { getKarmaConfig } from 'grumbler-scripts/config/karma.conf';
import { getKarmaConfig } from '@krakenjs/grumbler-scripts/config/karma.conf';

import { WEBPACK_CONFIG_TEST } from './webpack.config';

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"flow": "flow",
"karma": "cross-env NODE_ENV=test babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/karma start",
"babel": "babel src/ --out-dir dist/module",
"webpack": "babel-node --config-file ./node_modules/grumbler-scripts/config/.babelrc-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/webpack --display-optimization-bailout --progress",
"webpack": "babel-node --config-file ./node_modules/@krakenjs/grumbler-scripts/config/.babelrc-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/webpack --display-optimization-bailout --progress",
"test": "npm run lint && npm run flow-typed && npm run flow && npm run karma",
"build": "npm run test && npm run babel && npm run webpack -- $@",
"clean": "rimraf dist coverage",
Expand Down Expand Up @@ -89,8 +89,8 @@
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@krakenjs/grumbler-scripts": "^6.0.2",
"flow-bin": "0.155.0",
"grumbler-scripts": "^5.0.3",
"husky": "^7.0.4",
"mocha": "^4",
"standard-version": "^9.3.2"
Expand Down
2 changes: 1 addition & 1 deletion test/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
/* eslint import/no-commonjs: off */

module.exports = {
'extends': '../node_modules/grumbler-scripts/config/.eslintrc-browser-test.js'
'extends': '../node_modules/@krakenjs/grumbler-scripts/config/.eslintrc-browser-test.js'
};
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* @flow */
/* eslint import/no-nodejs-modules: off, import/no-default-export: off, import/default: off */

import type { WebpackConfig } from 'grumbler-scripts/config/types';
import { getWebpackConfig, getNextVersion } from 'grumbler-scripts/config/webpack.config';
import type { WebpackConfig } from '@krakenjs/grumbler-scripts/config/types';
import { getWebpackConfig, getNextVersion } from '@krakenjs/grumbler-scripts/config/webpack.config';
import { argv } from 'yargs';

import pkg from './package.json';
Expand Down

0 comments on commit d498da0

Please sign in to comment.