Skip to content

Commit 91de59b

Browse files
author
Eric Wendelin
committed
Doc improvements. Move everything pointing to eriwen/javascript-stacktrace -> stacktracejs/stacktrace.js.
1 parent c515beb commit 91de59b

File tree

9 files changed

+31
-20
lines changed

9 files changed

+31
-20
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.6.2
2+
3+
* Ignore test/ dir in bower
4+
* Migrate references eriwen/javascript-stacktrace -> stacktracejs/stacktrace.js
5+
16
## v0.6.1
27

38
* Fix printStackTrace throws exception with "use strict" code and PhantomJS

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Domain Public by Eric Wendelin http://eriwen.com/ (2008)
1+
Domain Public by Eric Wendelin http://www.eriwen.com/ (2008)
22
Luke Smith http://lucassmith.name/ (2008)
33
Loic Dachary <loic@dachary.org> (2008)
44
Johan Euphrosine <proppy@aminche.com> (2008)

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Welcome to stacktrace.js! [![Code Climate](https://codeclimate.com/github/eriwen/javascript-stacktrace.png)](https://codeclimate.com/github/eriwen/javascript-stacktrace)
1+
# Welcome to stacktrace.js! [![Code Climate](https://codeclimate.com/github/stacktracejs/stacktrace.js.png)](https://codeclimate.com/github/stacktracejs/stacktrace.js)
22
A JavaScript tool that allows you to debug your JavaScript by giving you a [stack trace](http://en.wikipedia.org/wiki/Stack_trace) of function calls leading to an error (or any condition you specify)
33

4-
# How do I use stacktrace.js? #
4+
# Usage
55
Just include stacktrace.js file on your page, and call it like so:
66

77
```html
@@ -55,7 +55,15 @@ foo(); //Will log a stacktrace when 'baz()' is called containing 'foo()'!
5555
p.deinstrumentFunction(this, 'baz'); //Remove function instrumentation
5656
```
5757

58-
# What browsers does stacktrace.js support? #
58+
# Get stacktrace.js
59+
```
60+
npm install stacktrace-js
61+
bower install stacktrace-js
62+
component install stacktrace.js
63+
wget https://rawgithub.com/stacktracejs/stacktrace.js/master/stacktrace.js
64+
```
65+
66+
# Browser Support
5967
It is currently tested and working on:
6068

6169
- Firefox (and Iceweasel) 0.9+
@@ -70,13 +78,11 @@ It is currently tested and working on:
7078
- Epiphany 2.28.0+
7179
- Iceape 1.1+
7280

73-
## Contributions [![Stories in Ready](http://badge.waffle.io/eriwen/javascript-stacktrace.png)](http://waffle.io/eriwen/javascript-stacktrace)
81+
## Contributions [![Stories in Ready](http://badge.waffle.io/stacktracejs/stacktrace.js.png)](http://waffle.io/stacktracejs/stacktrace.js)
7482

7583
This project is made possible due to the efforts of these fine people:
7684

77-
* [Eric Wendelin](http://eriwen.com)
85+
* [Eric Wendelin](http://www.eriwen.com)
86+
* [Victor Homyakov] (https://github.com/victor-homyakov)
7887
* [Luke Smith](http://lucassmith.name/)
79-
* Loic Dachary
80-
* Johan Euphrosine
81-
* Øyvind Sean Kinsey
82-
* Victor Homyakov
88+
* [Many others](https://github.com/stacktracejs/stacktrace.js/graphs/contributors)

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "stacktrace.js",
3-
"version": "0.6.1",
2+
"name": "stacktrace-js",
3+
"version": "0.6.2",
44
"main": "./stacktrace.js",
55
"dependencies": {},
66
"ignore": [
77
"**/.*",
8-
"test"
8+
"test",
99
"node_modules",
1010
"components"
1111
]

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stacktrace.js",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"repo": "stacktracejs/stacktrace.js",
55
"main": "stacktrace.js",
66
"scripts": [

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "stacktrace-js",
33
"description": "Framework-agnostic, micro-library for getting stack traces in all environments",
4-
"author": "Eric Wendelin <me@eriwen.com> (http://eriwen.com)",
5-
"version": "0.6.1",
4+
"author": "Eric Wendelin <me@eriwen.com> (http://www.eriwen.com)",
5+
"version": "0.6.2",
66
"keywords": ["stack-trace", "cross-browser", "framework-agnostic", "client", "browser"],
77
"homepage": "http://stacktracejs.com",
88
"repository": {
99
"type": "git",
10-
"url": "git://github.com/eriwen/javascript-stacktrace.git"
10+
"url": "git://github.com/stacktracejs/stacktrace.js.git"
1111
},
1212
"main": "./stacktrace.js",
1313
"engines": {

stacktrace-bookmarklet.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stacktrace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Domain Public by Eric Wendelin http://eriwen.com/ (2008)
1+
// Domain Public by Eric Wendelin http://www.eriwen.com/ (2008)
22
// Luke Smith http://lucassmith.name/ (2008)
33
// Loic Dachary <loic@dachary.org> (2008)
44
// Johan Euphrosine <proppy@aminche.com> (2008)

test/functional/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<style>li{font-size:14px;font-weight:bold}</style>
77
</head>
88
<body>
9-
<h3><a href="https://github.com/eriwen">eriwen</a> / <strong><a href="https://github.com/eriwen/javascript-stacktrace">stacktrace.js</a></strong></h3>
9+
<h3><a href="https://github.com/stacktracejs">stacktracejs</a> / <strong><a href="https://github.com/stacktracejs/stacktrace.js">stacktrace.js</a></strong></h3>
1010
<ul>
1111
<li>Just include stacktrace.js file on your page, and call it like so:</li>
1212
</ul>

0 commit comments

Comments
 (0)