Skip to content

Commit

Permalink
Merge pull request #737 from Availity/chore/update-notifier
Browse files Browse the repository at this point in the history
refactor(workflow): remove update-notifier
  • Loading branch information
gregmartDOTin authored Jul 2, 2024
2 parents 6ed96cd + 1854452 commit e26246f
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 616 deletions.
45 changes: 21 additions & 24 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: monthly
time: "10:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: "@testing-library/react"
versions:
- 11.2.3
- 11.2.5
- dependency-name: elliptic
versions:
- 6.5.4
- dependency-name: webpack
versions:
- 5.11.1
- 5.19.0
- dependency-name: update-notifier
versions:
- 5.1.0
- dependency-name: copy-webpack-plugin
versions:
- 7.0.0
- package-ecosystem: npm
directory: '/'
schedule:
interval: monthly
time: '10:00'
open-pull-requests-limit: 10
ignore:
- dependency-name: '@testing-library/react'
versions:
- 11.2.3
- 11.2.5
- dependency-name: elliptic
versions:
- 6.5.4
- dependency-name: webpack
versions:
- 5.11.1
- 5.19.0
- dependency-name: copy-webpack-plugin
versions:
- 7.0.0
1 change: 0 additions & 1 deletion packages/workflow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@
"terser-webpack-plugin": "^5.3.10",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"type-is": "^1.6.18",
"update-notifier": "^5.1.0",
"url-join": "^4.0.1",
"validate-npm-package-name": "^5.0.1",
"webpack": "^5.91.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/workflow/scripts/about.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const Logger = require('@availity/workflow-logger');
const chalk = require('chalk');
const envinfo = require('envinfo');
const notifier = require('./notifier');
const pkg = require('../package.json');

const version = chalk.bold.yellow(`v${pkg.version}`);
Expand Down Expand Up @@ -41,7 +40,8 @@ ${chalk.bold('@availity/workflow')} ${version}
`;

function about() {
notifier();
// TODO: Implement an update-notifier
// notifier();
Logger.simple(message);
envinfo.run(
{
Expand Down
27 changes: 0 additions & 27 deletions packages/workflow/scripts/notifier.js

This file was deleted.

4 changes: 2 additions & 2 deletions packages/workflow/scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const webpackConfigBase = require('../webpack.config');
const webpackConfigProduction = require('../webpack.config.profile');

const proxy = require('./proxy');
const notifier = require('./notifier');
const open = require('./open');
const formatWebpackMessages = require('./format');

Expand Down Expand Up @@ -218,7 +217,8 @@ async function start() {
try {
init();
await web();
await notifier();
// TODO: implement an update-notifier
// await notifier();
await rest();
} catch (error) {
Logger.failed(`${error}
Expand Down
Loading

0 comments on commit e26246f

Please sign in to comment.