Skip to content

Commit

Permalink
0.17.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jan 19, 2016
1 parent bd3140a commit 4df515f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ exports.load = function(prompts, allowNoConfig) {
.then(function() {
ui.log('ok', 'jspm 0.17-beta upgrade complete.\n\n' +
'Some important breaking changes to note:\n\n' +
wordWrap('• The %config.js% file has been renamed to %jspm.js% unless you were already using a custom config path for this.\n', process.stdout.columns - 4, 2, 0, true) + '\n' +
wordWrap('• The %config.js% file has been renamed to %jspm.config.js% unless you were already using a custom config path for this.\n', process.stdout.columns - 4, 2, 0, true) + '\n' +
wordWrap('• There is now a new config file, %jspm.browser.js%, which must be included _before_ %jspm.js% in the browser.\n', process.stdout.columns - 4, 2, 0, true) + '\n' +
wordWrap('• js extensions are required for module imports not inside packages. Eg %System.import(\'./test\')% will need to become %System.import(\'./test.js\')%.', process.stdout.columns - 4, 2, 0, true) + '\n' +
'\nThere are also other smaller breaking changes in this release, described in the full changelog at https://github.com/jspm/jspm-cli/releases/tag/0.17.0-beta.\n' + '\n' +
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jspm",
"description": "Registry and format agnostic JavaScript package manager",
"version": "0.17.0-beta.2",
"version": "0.17.0-beta.3",
"main": "./api.js",
"author": "",
"dependencies": {
Expand All @@ -10,8 +10,8 @@
"core-js": "^1.2.6",
"glob": "^6.0.1",
"graceful-fs": "^4.1.2",
"jspm-github": "^0.14.0",
"jspm-npm": "^0.27.0",
"jspm-github": "^0.14.1",
"jspm-npm": "^0.27.1",
"jspm-registry": "^0.4.0",
"liftoff": "^2.2.0",
"minimatch": "^3.0.0",
Expand All @@ -21,8 +21,8 @@
"request": "^2.67.0",
"rimraf": "^2.4.4",
"semver": "^5.1.0",
"systemjs": "^0.19.16",
"systemjs-builder": "^0.15.3",
"systemjs": "^0.19.17",
"systemjs-builder": "^0.15.4",
"traceur": "0.0.95",
"uglify-js": "^2.6.1"
},
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion testlibs/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- <link rel="stylesheet" href="build.css" /> -->
<script src="jspm_packages/system.src.js"></script>
<script src="jspm.browser.js"></script>
<script src="jspm.js"></script>
<script src="jspm.config.js"></script>

<body>
<div id="mocha"></div>
Expand Down

0 comments on commit 4df515f

Please sign in to comment.