Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(workflow): remove update-notifier #737

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading