Skip to content

Commit

Permalink
version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
negue committed Jun 4, 2020
1 parent abe2a4d commit 36b5d98
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"namedChunks": true,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {Lazy} from "@gewd/lazy/utils";

// Lazy-load :)
const loadStacktracey = Lazy.create(
() => import('stacktracey')
() => /* webpackChunkName: "stacktracey" */ import('stacktracey')
.then(p => {
const stacktracey = p.default;

Expand Down
4 changes: 2 additions & 2 deletions libs/client-connection/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@senstate/client-connection",
"version": "0.2.0",
"version": "0.3.0",
"peerDependencies": {
"@senstate/client": "~0.2.0"
"@senstate/client": "~0.3.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion libs/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@senstate/client",
"version": "0.2.0",
"version": "0.3.0",
"peerDependencies": {
"rxjs": "6.5.3"
},
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@
"dep-graph": "nx dep-graph",
"help": "nx help",
"start:dev": "ng run example-app:serve-hub",
"build:cli:raw": "rm -rf dist/apps && ng build senstate --prod --stats-json && ng build senstate-dashboard --prod --aot",
"build:cli": "npm run build:cli:raw && uglifyjs dist/apps/senstate/main.js -o dist/apps/senstate/main.js",
"build:cli:raw": "npx rimraf dist/apps && ng build senstate --prod --stats-json && ng build senstate-dashboard --prod --aot && npx rimraf dist/apps/senstate/main.js.map",
"build:cli": "npm run build:cli:raw && npx uglify-js dist/apps/senstate/main.js -o dist/apps/senstate/main.js",
"build:libs": "ng build client && ng build client-connection",
"build:all": "npm run build:libs && npm run build:cli",
"client:coverage": "ng test client --codeCoverage=true",
"client-connection:coverage": "ng test client-connection --codeCoverage=true",
"markdown:lint": "npx [email protected] -c tools/configs/markdownlint.yml **/*.md -i node_modules -i dist",
Expand Down

0 comments on commit 36b5d98

Please sign in to comment.