Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #21 from openizr/1.0.0
Browse files Browse the repository at this point in the history
1.0.0
  • Loading branch information
matthieujabbour committed Aug 3, 2022
2 parents f6e7a74 + 5fb7897 commit 8bd9e5a
Show file tree
Hide file tree
Showing 207 changed files with 21,588 additions and 27,322 deletions.
12 changes: 1 addition & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- 15
- 17

jobs:
include:
Expand All @@ -12,8 +12,6 @@ jobs:
- sed -i "s/\.\.\/\.\.\///g" coverage/lcov.info

before_deploy:
- yarn run doc
- touch ../docs/.nojekyll
- npm config set '//registry.npmjs.org/:_authToken' "${NPM_AUTH_TOKEN}"

# Only when deploying a new release
Expand All @@ -24,14 +22,6 @@ deploy:
script: yarn run build && cp ../README.md dist && cp ../LICENSE dist && sed -i "s/TRAVIS_TAG/$TRAVIS_TAG/g" ./dist/package.json && npm publish ./dist
on:
tags: true
# Generates documentation
- provider: pages
skip_cleanup: true
keep_history: true
target_branch: master
github_token: $GITHUB_TOKEN
on:
tags: true

# Coveralls is executed at the very end to prevent it from making deployment fail in case of error
after_success:
Expand Down
12 changes: 9 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,22 @@ version: "3.6"
services:
library:
container_name: ${PROJECT_NAME}_library
image: openizr/node:2.0.1-dev
image: openizr/node:3.0.0-dev
env_file:
- .env
command: sh -c "dsync src/scripts/types.d.ts dist/types.d.ts & dsync src/scripts/types.d.ts dist/react.d.ts & dsync src/scripts/types.d.ts dist/vue.d.ts & dsync src/scripts/types.d.ts dist/plugins.d.ts & yarn && yarn run dev"
command: sh -c "
dsync src/scripts/core.d.ts dist/core.d.ts &
dsync src/scripts/plugins.d.ts dist/plugins.d.ts &
dsync src/scripts/react.d.ts dist/react.d.ts &
dsync src/scripts/vue.d.ts dist/vue.d.ts &
dsync src/scripts/svelte.d.ts dist/svelte.d.ts &
yarn && yarn run dev"
volumes:
- ./library:/var/www/html
restart: unless-stopped
playground:
container_name: ${PROJECT_NAME}_playground
image: openizr/node:2.0.1-dev
image: openizr/node:3.0.0-dev
env_file:
- .env
ports:
Expand Down
Empty file removed docs/.nojekyll
Empty file.
Loading

0 comments on commit 8bd9e5a

Please sign in to comment.