Skip to content

Commit

Permalink
Reduce package manager scaffolding.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed May 31, 2016
1 parent df34c15 commit eaa5318
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 166 deletions.
6 changes: 0 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@ build-config: $(BUILDDIR)/package.json $(BUILDDIR)/component.json $(BUILDDIR)/bo

build-es-config: $(BUILD_ES)/package.json $(BUILD_ES)/README.md $(BUILD_ES)/LICENSE $(BUILD_ES)/CHANGELOG.md

bower.json: package.json
support/sync-package-managers.js

component.json: package.json
support/sync-package-managers.js

$(BUILDDIR)/package.json: package.json
mkdir -p "$(@D)"
support/sync-cjs-package.js > $@
Expand Down
70 changes: 11 additions & 59 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,17 @@
{
"name": "async",
"description": "Higher-order functions and common patterns for asynchronous code",
"main": "dist/async.js",
"keywords": [
"async",
"callback",
"module",
"utility"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caolan/async.git"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.16",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"benchmark": "bestiejs/benchmark.js",
"bluebird": "^2.9.32",
"chai": "^3.1.0",
"coveralls": "^2.11.2",
"es6-promise": "^2.3.0",
"fs-extra": "^0.26.7",
"jscs": "^1.13.1",
"jscs-jsdoc": "^1.3.2",
"jshint": "~2.8.0",
"karma": "^0.13.2",
"karma-browserify": "^4.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"mocha": "^2.2.5",
"native-promise-only": "^0.8.0-a",
"nyc": "^2.1.0",
"recursive-readdir": "^1.3.0",
"rimraf": "^2.5.0",
"rollup": "^0.25.0",
"rollup-plugin-node-resolve": "^1.5.0",
"rollup-plugin-npm": "~1.3.0",
"rsvp": "^3.0.18",
"semver": "^4.3.6",
"uglify-js": "~2.4.0",
"yargs": "~3.9.1"
},
"moduleType": [
"amd",
"globals",
"node"
],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"authors": [
"Caolan McMahon"
"lib",
"mocha_test",
"node_modules",
"perf",
"support",
"**/.*",
"*.config.js",
"*.json",
"index.js",
"Makefile"
]
}
}
17 changes: 0 additions & 17 deletions component.json

This file was deleted.

28 changes: 2 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,29 +64,5 @@
"mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
"test": "npm run-script lint && npm run mocha-node-test"
},
"license": "MIT",
"jam": {
"main": "dist/async.js",
"include": [
"dist/async.js",
"README.md",
"LICENSE"
],
"categories": [
"Utilities"
]
},
"spm": {
"main": "dist/async.js"
},
"volo": {
"main": "dist/async.js",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
}
"license": "MIT"
}
55 changes: 0 additions & 55 deletions support/sync-package-managers.js

This file was deleted.

3 changes: 0 additions & 3 deletions support/xyz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ This involves updating the version number in package.json, committing this
change (along with any staged changes), tagging the commit, pushing to the
remote git repository, and finally publishing to the public npm registry.
If present, component.json is updated along with package.json.
Options:
-b --branch <name>
Expand Down Expand Up @@ -160,7 +158,6 @@ inc() {

inc package.json

run "$dir/sync-package-managers.js"
run "git add --force *.json"

run "git commit --message '$message'"
Expand Down

0 comments on commit eaa5318

Please sign in to comment.