Skip to content

Commit

Permalink
fix: command invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jun 6, 2023
1 parent 06447d6 commit b74638a
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 35 deletions.
5 changes: 4 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
types/demo/**
dist
examples
node_modules
types/demo
47 changes: 21 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"clean": "rm -rf ./dist ./nyc_output ./node_modules/.cache ./coverage",
"coverage": "cross-env NODE_ENV=test nyc npm run test",
"docs": "./node_modules/.bin/jsdoc src/models src/services src/errors src/utils -d docs",
"fix": "eslint src/** types/** test/** --fix",
"fix": "eslint . --ext .js,.ts --fix",
"format": "prettier --write .",
"formatCheck": "prettier --check .",
"lint": "eslint src/** types/** test/**",
"lint": "eslint . --ext .js,.ts",
"prepublishOnly": "npm run clean && npm run build && npm run test && npm run lint && npm run check",
"repl": "./repl.js --local easypost.js",
"scan": "npx audit-ci -m",
Expand Down Expand Up @@ -77,7 +77,7 @@
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5 || ^5.0.0",
"typescript": "^4.9.5 || ~5.0.0",
"vows": "^0.8.3",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
Expand Down
4 changes: 0 additions & 4 deletions repl.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
#!/usr/bin/env node
/* eslint-disable import/no-dynamic-require */

/* eslint import/no-extraneous-dependencies: 0, global-require: 0, import/no-unresolved: 0, no-console: 0, max-len: 0 */

require('source-map-support').install();
require('core-js/stable');

Expand Down
1 change: 0 additions & 1 deletion webpack.config.babel.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint import/no-extraneous-dependencies: 0 */
const path = require('path');
const nodeExternals = require('webpack-node-externals');

Expand Down

0 comments on commit b74638a

Please sign in to comment.