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

fix: move yargs.cjs to yargs #1747

Merged
merged 2 commits into from Sep 10, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -12,7 +12,7 @@
"import": "./helpers.mjs"
},
"./yargs": {
"require": "./yargs.cjs"
"require": "./yargs"
}
},
"type": "module",
Expand All @@ -28,7 +28,7 @@
"index.cjs",
"helpers.mjs",
"index.mjs",
"yargs.cjs",
"yargs",
"build",
"locales",
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions test/helpers.cjs
Expand Up @@ -2,8 +2,8 @@

const {describe, it} = require('mocha')
const assert = require('assert')
const yargs = require('../yargs.cjs');
const { applyExtends } = require('../yargs.cjs');
const yargs = require('../yargs');
const { applyExtends } = require('../yargs');

const HELPER_COUNT = 2;

Expand Down
File renamed without changes.