Skip to content

Commit

Permalink
Merge 580b8b3 into cf7e811
Browse files Browse the repository at this point in the history
  • Loading branch information
kistll committed Feb 19, 2021
2 parents cf7e811 + 580b8b3 commit 05fb104
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.10.0] - 2021-02-19

### Added

- Add Luigi dependency in order to support custom navigation as part of the Shell side navigation

## [1.9.1] - 2021-02-03

### Update
Expand Down
77 changes: 75 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fsm-shell",
"version": "1.9.1",
"version": "1.10.0",
"description": "client library for FSM shell",
"main": "release/fsm-shell-client.js",
"module": "release/fsm-shell-client.es.js",
Expand Down Expand Up @@ -34,6 +34,7 @@
},
"homepage": "https://github.com/SAP/fsm-shell#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jasmine": "^3.5.12",
"@types/jasminewd2": "^2.0.8",
"@types/sinon": "^9.0.4",
Expand Down Expand Up @@ -70,7 +71,9 @@
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.1.6"
},
"dependencies": {},
"dependencies": {
"@luigi-project/client": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
Expand Down
20 changes: 11 additions & 9 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import typescript from 'rollup-plugin-typescript2'
import filesize from 'rollup-plugin-filesize'
import typescript from 'rollup-plugin-typescript2';
import filesize from 'rollup-plugin-filesize';
import nodeResolve from '@rollup/plugin-node-resolve';

import pkg from './package.json'
import pkg from './package.json';

export default {
input: 'src/index.ts',
Expand All @@ -10,21 +11,22 @@ export default {
file: pkg.main,
format: 'umd',
name: 'FSMShell',
sourcemap: true
sourcemap: true,
},
{
file: pkg.module,
format: 'es',
sourcemap: true
sourcemap: true,
},
],
plugins: [
typescript({
typescript: require('typescript'),
tsconfigDefaults: {
sourceMap: true
}
sourceMap: true,
},
}),
filesize()
filesize(),
nodeResolve(),
],
}
};
2 changes: 2 additions & 0 deletions src/ShellSdk.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { EventType, ErrorType, SHELL_EVENTS } from './ShellEvents';
import { SHELL_VERSION_INFO } from './ShellVersionInfo';
import { Debugger } from './Debugger';
import * as LuigiClient from '@luigi-project/client';

// tslint:disable
function uuidv4() {
Expand All @@ -15,6 +16,7 @@ function uuidv4() {
const DEFAULT_MAXIMUM_DEPTH = 1;

export class ShellSdk {
public LuigiClient = LuigiClient;
public static VERSION = SHELL_VERSION_INFO.VERSION;
public static BUILD_TS = SHELL_VERSION_INFO.BUILD_TS;

Expand Down

0 comments on commit 05fb104

Please sign in to comment.