diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bce389..bd5bf4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index b93985c..316d26e 100644 --- a/README.md +++ b/README.md @@ -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). @@ -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: @@ -354,7 +354,7 @@ loadjs/ 1. Clone repository ```bash - $ git clone git@github.com:muicss/loadjs.git + $ git clone git@github.com:kubetail-org/loadjs.git $ cd loadjs ``` diff --git a/RELEASE.md b/RELEASE.md index 6b964e5..50a58cf 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 $ git push --tags ``` diff --git a/bower.json b/bower.json index 4dd440b..82264a3 100644 --- a/bower.json +++ b/bower.json @@ -1,18 +1,18 @@ { "name": "loadjs", - "version": "4.2.0", + "version": "4.3.0", "license": "MIT", "authors": [ - "Andres Morey " + "Andres Morey " ], - "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", diff --git a/package.json b/package.json index 9b81a99..06a28c7 100644 --- a/package.json +++ b/package.json @@ -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": {