From d4367d8b4ef1bebc2de56d431656aaadd130257d Mon Sep 17 00:00:00 2001 From: Franco Rondini Date: Sun, 26 May 2019 18:18:54 +0200 Subject: [PATCH] docs(link): link examples correctly --- .travis.yml | 28 ++++++++++++++++++++++++++++ README.md | 4 ++-- 2 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..03883a0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,28 @@ +language: node_js +node_js: + - 8 + - 10 + - 11 + - 12 + - node + +env: + - IS_UNDER_TEST=true + - IS_LOG_SILENT=true + - IS_LOG_VERBOSE=false + +install: + - npm install + +script: + - npm clean:prepare:cover + +after_success: + - NODE_ENV=production npm run build + - npm run coveralls + - semantic-release + +notifications: + email: true + +sudo: false \ No newline at end of file diff --git a/README.md b/README.md index 6cb69f2..db0bc34 100644 --- a/README.md +++ b/README.md @@ -53,12 +53,12 @@ Run `npm run lint` --> ## Examples -# [PhytoJS Samples for NodeJS](https://github.com/rondinif/phytojs/samples) +# [PhytoJS Samples for NodeJS](https://github.com/rondinif/phytojs/tree/master/samples) There are examples that use both `require` and `import` to reference the PhytoJS servive module. - UMD (Universal Module Definition) - `AMD` and `CJS` (`CommonJS`) are both compatible with `UMD` - ESM / ES6 (ECMAScript.next and TC39 Module Definition) -# [PhytoJS Samples for the browser](https://github.com/rondinif/docs) +# [PhytoJS Samples for the browser](https://github.com/rondinif/phytojs/tree/master/docs) ## Live [Demo of PhytoJS running in the browser](https://rondinif.github.io/phytojs/mvc) ### Contributing