├── .babelrc ├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bower.json ├── dist ├── livereload.js └── livereload.min.js ├── package.json ├── src ├── connector.js ├── customevents.js ├── less.js ├── livereload.js ├── options.js ├── protocol.js ├── reloader.js ├── startup.js └── timer.js ├── test ├── .eslintrc.json ├── all.js ├── connector_test.js ├── html │ ├── browserified │ │ ├── .gitignore │ │ ├── main.js │ │ ├── test.css │ │ └── test.html │ ├── css-import │ │ ├── bug-test-case.html │ │ ├── imported.css │ │ ├── test.css │ │ └── test.html │ ├── delayed │ │ ├── test.css │ │ ├── test.html │ │ └── testcss.php │ ├── images │ │ ├── .gitignore │ │ ├── imported.css │ │ ├── pic1.jpg │ │ ├── pic2.jpg │ │ ├── run.sh │ │ ├── test.css │ │ └── test.html │ ├── lessjs │ │ ├── .gitignore │ │ ├── test.html │ │ └── test.less │ ├── prefixfree │ │ ├── test.css │ │ └── test.html │ └── trivial │ │ ├── test.css │ │ └── test.html ├── options_test.js ├── protocol_test.js ├── reloader_test.js └── timer_test.js └── version-bower.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/bower.json -------------------------------------------------------------------------------- /dist/livereload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/dist/livereload.js -------------------------------------------------------------------------------- /dist/livereload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/dist/livereload.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/package.json -------------------------------------------------------------------------------- /src/connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/connector.js -------------------------------------------------------------------------------- /src/customevents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/customevents.js -------------------------------------------------------------------------------- /src/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/less.js -------------------------------------------------------------------------------- /src/livereload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/livereload.js -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/options.js -------------------------------------------------------------------------------- /src/protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/protocol.js -------------------------------------------------------------------------------- /src/reloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/reloader.js -------------------------------------------------------------------------------- /src/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/startup.js -------------------------------------------------------------------------------- /src/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/src/timer.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/all.js -------------------------------------------------------------------------------- /test/connector_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/connector_test.js -------------------------------------------------------------------------------- /test/html/browserified/.gitignore: -------------------------------------------------------------------------------- 1 | bundle.js 2 | -------------------------------------------------------------------------------- /test/html/browserified/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/browserified/main.js -------------------------------------------------------------------------------- /test/html/browserified/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/html/browserified/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/browserified/test.html -------------------------------------------------------------------------------- /test/html/css-import/bug-test-case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/css-import/bug-test-case.html -------------------------------------------------------------------------------- /test/html/css-import/imported.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/css-import/imported.css -------------------------------------------------------------------------------- /test/html/css-import/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/css-import/test.css -------------------------------------------------------------------------------- /test/html/css-import/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/css-import/test.html -------------------------------------------------------------------------------- /test/html/delayed/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/delayed/test.css -------------------------------------------------------------------------------- /test/html/delayed/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/delayed/test.html -------------------------------------------------------------------------------- /test/html/delayed/testcss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/delayed/testcss.php -------------------------------------------------------------------------------- /test/html/images/.gitignore: -------------------------------------------------------------------------------- 1 | pic.jpg 2 | -------------------------------------------------------------------------------- /test/html/images/imported.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/images/imported.css -------------------------------------------------------------------------------- /test/html/images/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/images/pic1.jpg -------------------------------------------------------------------------------- /test/html/images/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/images/pic2.jpg -------------------------------------------------------------------------------- /test/html/images/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/images/run.sh -------------------------------------------------------------------------------- /test/html/images/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/images/test.css -------------------------------------------------------------------------------- /test/html/images/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/images/test.html -------------------------------------------------------------------------------- /test/html/lessjs/.gitignore: -------------------------------------------------------------------------------- 1 | test.css 2 | -------------------------------------------------------------------------------- /test/html/lessjs/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/lessjs/test.html -------------------------------------------------------------------------------- /test/html/lessjs/test.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/lessjs/test.less -------------------------------------------------------------------------------- /test/html/prefixfree/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/prefixfree/test.css -------------------------------------------------------------------------------- /test/html/prefixfree/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/prefixfree/test.html -------------------------------------------------------------------------------- /test/html/trivial/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/html/trivial/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/html/trivial/test.html -------------------------------------------------------------------------------- /test/options_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/options_test.js -------------------------------------------------------------------------------- /test/protocol_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/protocol_test.js -------------------------------------------------------------------------------- /test/reloader_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/reloader_test.js -------------------------------------------------------------------------------- /test/timer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/test/timer_test.js -------------------------------------------------------------------------------- /version-bower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livereload/livereload-js/HEAD/version-bower.js --------------------------------------------------------------------------------