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

Dependency cleanup #611

Merged
merged 3 commits into from
May 2, 2018
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
29 changes: 12 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,36 +25,31 @@
"cordova-serve": "^2.0.0",
"dep-graph": "1.1.0",
"detect-indent": "^5.0.0",
"dependency-ls": "^1.1.1",
"elementtree": "0.1.6",
"glob": "7.1.1",
"elementtree": "^0.1.7",
"glob": "^7.1.2",
"init-package-json": "^1.2.0",
"nopt": "4.0.1",
"opener": "1.4.2",
"opener": "^1.4.3",
"plist": "2.0.1",
"properties-parser": "0.3.1",
"q": "1.0.1",
"request": "2.79.0",
"q": "^1.5.1",
"semver": "^5.3.0",
"shelljs": "0.3.0",
"tar": "2.2.1",
"underscore": "1.8.3",
"unorm": "1.4.1",
"valid-identifier": "0.0.1",
"xcode": "^1.0.0"
"tar": "^4.4.1",
"underscore": "^1.9.0"
},
"devDependencies": {
"codecov": "^2.1.0",
"codecov": "^3.0.1",
"eslint": "^4.2.0",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"jasmine": "^2.5.2",
"rewire": "^2.5.2"
"jasmine": "^3.0.1",
"rewire": "^4.0.1"
},
"scripts": {
"test": "npm run eslint && npm run unit-tests && npm run e2e-tests",
Expand Down
2 changes: 1 addition & 1 deletion spec/cordova/util.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ describe('util module', function () {
describe('getPlatformApiFunction', function () {
it('Test 027 : should throw error informing user to update platform', function () {
expect(function () { util.getPlatformApiFunction('some/path', 'android'); }).toThrowError(
/(Uncaught, unspecified|Unhandled) "error" event. \( Using this version of Cordova with older version of cordova-android is deprecated\. Upgrade to cordova-android@5\.0\.0 or newer.\)/
/\( Using this version of Cordova with older version of cordova-android is deprecated\. Upgrade to cordova-android@5\.0\.0 or newer.\)/
);
});

Expand Down
2 changes: 1 addition & 1 deletion src/plugman/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module.exports = function create (name, id, version, pluginPath, options) {
root.set('version', version);

// Add the name tag
pluginName = et.XML('<name>');
pluginName = et.XML('<name></name>');
pluginName.text = name;
root.append(pluginName);

Expand Down