Skip to content

Commit

Permalink
updated repo url references, updated version number in bower.json and…
Browse files Browse the repository at this point in the history
… readme
  • Loading branch information
amorey committed Apr 11, 2024
1 parent 429dd45 commit 2538ee5
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# LoadJS Changelog

## 4.3.0 - April, 11, 2024

* Added support for module/nomodule path modifier (https://github.com/kubetail-org/loadjs/issues/108)

## 4.2.0 - December 1, 2019

* Added support for .webp image extensions
Expand All @@ -15,7 +19,7 @@
## 3.6.1 - April 11, 2019

* Upgraded devDependencies
* Fixed issue with source code documentation (https://github.com/muicss/loadjs/issues/88)
* Fixed issue with source code documentation (https://github.com/kubetail-org/loadjs/issues/88)

## 3.6.0 - March 14, 2019

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LoadJS is a tiny async loader for modern browsers (961 bytes).

## Introduction

LoadJS is a tiny async loading library for modern browsers (IE9+). It has a simple yet powerful dependency management system that lets you fetch JavaScript, CSS and image files in parallel and execute code after the dependencies have been met. The recommended way to use LoadJS is to include the minified source code of [loadjs.js](https://raw.githubusercontent.com/muicss/loadjs/master/dist/loadjs.min.js) in your <html> (possibly in the <head> tag) and then use the `loadjs` global to manage JavaScript dependencies after pageload.
LoadJS is a tiny async loading library for modern browsers (IE9+). It has a simple yet powerful dependency management system that lets you fetch JavaScript, CSS and image files in parallel and execute code after the dependencies have been met. The recommended way to use LoadJS is to include the minified source code of [loadjs.js](https://raw.githubusercontent.com/kubetail-org/loadjs/main/dist/loadjs.min.js) in your <html> (possibly in the <head> tag) and then use the `loadjs` global to manage JavaScript dependencies after pageload.

LoadJS is based on the excellent [$script](https://github.com/ded/script.js) library by [Dustin Diaz](https://github.com/ded). We kept the behavior of the library the same but we re-wrote the code from scratch to add support for success/error callbacks and to optimize the library for modern browsers. LoadJS is 961 bytes (minified + gzipped).

Expand Down Expand Up @@ -46,17 +46,17 @@ You can also use more advanced syntax for more options:
```

The latest version of LoadJS can be found in the `dist/` directory in this repository:
* [https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.js](https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.js) (for development)
* [https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.min.js](https://cdn.rawgit.com/muicss/loadjs/4.2.0/dist/loadjs.min.js) (for production)
* [https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.js](https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.js) (for development)
* [https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.min.js](https://cdn.rawgit.com/kubetail-org/loadjs/4.3.0/dist/loadjs.min.js) (for production)

It's also available from these public CDNs:

* UNPKG
* [https://unpkg.com/loadjs@4.2.0/dist/loadjs.js](https://unpkg.com/loadjs@4.2.0/dist/loadjs.js) (for development)
* [https://unpkg.com/loadjs@4.2.0/dist/loadjs.min.js](https://unpkg.com/loadjs@4.2.0/dist/loadjs.min.js) (for production)
* [https://unpkg.com/loadjs@4.3.0/dist/loadjs.js](https://unpkg.com/loadjs@4.3.0/dist/loadjs.js) (for development)
* [https://unpkg.com/loadjs@4.3.0/dist/loadjs.min.js](https://unpkg.com/loadjs@4.3.0/dist/loadjs.min.js) (for production)
* CDNJS
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.js) (for development)
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.min.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.2.0/loadjs.min.js) (for production)
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.js) (for development)
* [https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.min.js](https://cdnjs.cloudflare.com/ajax/libs/loadjs/4.3.0/loadjs.min.js) (for production)

You can also use it as a CJS or AMD module:

Expand Down Expand Up @@ -354,7 +354,7 @@ loadjs/
1. Clone repository

```bash
$ git clone [email protected]:muicss/loadjs.git
$ git clone [email protected]:kubetail-org/loadjs.git
$ cd loadjs
```

Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
```bash
$ git add . --all
$ git commit -a -m "bumped version number"
$ git push origin master
$ git push origin main
$ git tag <version-number>
$ git push --tags
```
Expand Down
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "loadjs",
"version": "4.2.0",
"version": "4.3.0",
"license": "MIT",
"authors": [
"Andres Morey <andres@muicss.com>"
"Andres Morey <andres@kubetail.com>"
],
"homepage": "https://github.com/muicss/loadjs",
"homepage": "https://github.com/kubetail-org/loadjs",
"description": "LoadJS is a tiny async loader for modern browsers.",
"main": [
"dist/loadjs.js"
],
"repository": {
"type": "git",
"url": "git://github.com/muicss/loadjs.git"
"url": "git://github.com/kubetail-org/loadjs.git"
},
"keywords": [
"async loader",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"loader",
"dependency manager"
],
"homepage": "https://github.com/muicss/loadjs",
"homepage": "https://github.com/kubetail-org/loadjs",
"bugs": {
"url": "https://github.com/muicss/loadjs/issues",
"email": "contact@muicss.com"
"url": "https://github.com/kubetail-org/loadjs/issues",
"email": "hello@kubetail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/muicss/loadjs.git"
"url": "https://github.com/kubetail-org/loadjs.git"
},
"main": "dist/loadjs.umd.js",
"scripts": {
Expand Down

0 comments on commit 2538ee5

Please sign in to comment.