Skip to content

Commit 47998bc

Browse files
Changed the website domain name
1 parent a1687ae commit 47998bc

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ All notable changes will be documented in this file.
1313

1414
#### in Web Browsers
1515

16-
- We no longer automatically include a polyfill for [Node's `util.format()` function](https://nodejs.org/api/util.html#util_util_format_format_args). We recommend using [ES6 template strings](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) instead. Or you can import [a polyfill](https://github.com/tmpfs/format-util) yourself and assign it to [the `ono.formatter` property](https://jsdevtools.org/ono/#onoformatter).
16+
- We no longer automatically include a polyfill for [Node's `util.format()` function](https://nodejs.org/api/util.html#util_util_format_format_args). We recommend using [ES6 template strings](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) instead. Or you can import [a polyfill](https://github.com/tmpfs/format-util) yourself and assign it to [the `ono.formatter` property](https://jstools.dev/ono/#onoformatter).
1717

1818
### New Features
1919

2020
- Completely rewritten in TypeScript.
2121

2222
- Ono is now completely dependency free.
2323

24-
- You can now create your own Ono functions for custom error classes. See [the docs](https://jsdevtools.org/ono/#custom-error-classes) for details.
24+
- You can now create your own Ono functions for custom error classes. See [the docs](https://jstools.dev/ono/#custom-error-classes) for details.
2525

2626
- Symbol-keyed properties are now supported. If the `originalError` and/or `props` objects has Symbol-keyed properties, they will be copied to the Ono error.
2727

Diff for: README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ono (Oh No!)
99
[![Dependencies](https://david-dm.org/JS-DevTools/ono.svg)](https://david-dm.org/JS-DevTools/ono)
1010
[![License](https://img.shields.io/npm/l/ono.svg)](LICENSE)
1111

12-
[![OS and Browser Compatibility](https://jsdevtools.org/img/badges/ci-badges-with-ie.svg)](https://travis-ci.com/JS-DevTools/ono)
12+
[![OS and Browser Compatibility](https://jstools.dev/img/badges/ci-badges-with-ie.svg)](https://travis-ci.com/JS-DevTools/ono)
1313

1414

1515

@@ -66,7 +66,6 @@ throw ono.myError(...); // MyErrorClass
6666

6767
Installation
6868
--------------------------
69-
#### Node
7069
Install using [npm](https://docs.npmjs.com/about-npm/):
7170

7271
```bash
@@ -248,6 +247,6 @@ Big Thanks To
248247
--------------------------
249248
Thanks to these awesome companies for their support of Open Source developers ❤
250249

251-
[![Travis CI](https://jsdevtools.org/img/badges/travis-ci.svg)](https://travis-ci.com)
252-
[![SauceLabs](https://jsdevtools.org/img/badges/sauce-labs.svg)](https://saucelabs.com)
253-
[![Coveralls](https://jsdevtools.org/img/badges/coveralls.svg)](https://coveralls.io)
250+
[![Travis CI](https://jstools.dev/img/badges/travis-ci.svg)](https://travis-ci.com)
251+
[![SauceLabs](https://jstools.dev/img/badges/sauce-labs.svg)](https://saucelabs.com)
252+
[![Coveralls](https://jstools.dev/img/badges/coveralls.svg)](https://coveralls.io)

Diff for: _config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
remote_theme: JS-DevTools/gh-pages-theme
22

33
title: Ono
4-
logo: https://jsdevtools.org/img/logos/logo.png
4+
logo: https://jstools.dev/img/logos/logo.png
55

66
author:
77
twitter: JSDevTools
@@ -16,7 +16,7 @@ defaults:
1616
- scope:
1717
path: ""
1818
values:
19-
image: https://jsdevtools.org/img/logos/card.png
19+
image: https://jstools.dev/img/logos/card.png
2020
- scope:
2121
path: "test/specs/**/*"
2222
values:

Diff for: karma.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Karma config
22
// https://karma-runner.github.io/0.12/config/configuration-file.html
3-
// https://jsdevtools.org/karma-config/
3+
// https://jstools.dev/karma-config/
44

55
"use strict";
66
const { karmaConfig } = require("karma-config");

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"url": "https://jamesmessinger.com"
2121
},
2222
"license": "MIT",
23-
"homepage": "https://jsdevtools.org/ono",
23+
"homepage": "https://jstools.dev/ono",
2424
"repository": {
2525
"type": "git",
2626
"url": "https://github.com/JS-DevTools/ono.git"

0 commit comments

Comments
 (0)