Skip to content

Commit

Permalink
chore(build): getting ready for 1.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneyrehm committed Oct 23, 2015
1 parent 395b010 commit a82b560
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ally.js",
"version": "1.0.0-alpha.1",
"version": "1.0.0-beta.1",
"authors": [
"Rodney Rehm <rodney.rehm@medialize.de> (http://rodneyrehm.de/en/)"
],
Expand Down
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"name": "ally.js",
"version": "1.0.0-alpha.1",
"version": "1.0.0-beta.1",
"description": "Library to help applications with accessibility concerns",
"main": "src/ally.js",
"directories": {
"example": "examples",
"test": "tests"
},
"main": "dist/ally.min.js",
"files": [
"src",
"dist"
],
"scripts": {
"test": "node test/run-local.js",
"test-ci": "npm run test-sauce",
"test-sauce": "intern-runner config=test/sauce",
"test-browserstack": "intern-runner config=test/browserstack",
"clean": "rm -rf dist/*",
"build": "npm run build-umd && npm run build-umd-min && npm run build-common && npm run build-amd && npm run build-docs",
"build": "npm run build-umd && npm run build-umd-min && npm run build-umd-clean && npm run build-common && npm run build-amd && npm run build-docs",
"build-umd": "browserify src/ally.js --debug --standalone ally --transform babelify | exorcist dist/ally.js.map > dist/ally.js",
"build-umd-clean": "rm dist/ally.js dist/ally.js.map",
"build-umd-min": "uglifyjs dist/ally.js --in-source-map dist/ally.js.map --source-map dist/ally.min.js.map --preamble \"/*! ${npm_package_name} - v${npm_package_version} - ${npm_package_homepage} - ${npm_package_license} License */\" --screw-ie8 --mangle --compress --output dist/ally.min.js",
"build-common": "babel --source-maps --modules common --out-dir dist/common src",
"build-amd": "babel --source-maps --modules amd --out-dir dist/amd src",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

const version = '1.0.0-alpha.1';
const version = '1.0.0-beta.1';
export default version;

0 comments on commit a82b560

Please sign in to comment.