5 Commits

Author SHA1 Message Date
b959d8566e 1.0.14 2019-05-23 15:52:30 +02:00
86632619fd fix(core): update 2019-05-23 15:52:30 +02:00
ac05c11927 1.0.13 2019-05-23 15:50:48 +02:00
4cab83991b 1.0.12 2019-04-16 08:28:49 +02:00
33f76aeca8 fix(core): update 2019-04-16 08:28:49 +02:00
5 changed files with 27 additions and 6 deletions

20
.gitignore vendored
View File

@ -1,4 +1,22 @@
node_modules/
.nogit/
# artifacts
coverage/
public/
pages/
# installs
node_modules/
# caches
.yarn/
.cache/
.rpt2_cache
# builds
dist/
dist_web/
dist_serve/
dist_ts_web/
# custom

View File

@ -109,10 +109,10 @@ pages:
image: hosttoday/ht-docker-node:npmci
stage: metadata
script:
- npmci command npm install -g typedoc typescript
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare
- npmci npm install
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
- npmci command tsdoc
tags:
- docker
- notpriv

View File

@ -22,7 +22,10 @@ Use TypeScript for best in class instellisense.
```typescript
import * as smartopen from '@pushrocks/smartopen';
await smartopen.openUrl('https://lossless.com');
const run = async () => {
await smartopen.openUrl('https://lossless.com');
};
run();
```
For further information read the linked docs at the top of this readme.

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartopen",
"version": "1.0.11",
"version": "1.0.14",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartopen",
"version": "1.0.11",
"version": "1.0.14",
"description": "open things",
"main": "dist/index.js",
"typings": "dist/index.d.ts",