Skip to content

Commit

Permalink
release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hufeng committed Oct 9, 2017
1 parent 3bc5ff8 commit 130e69b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/plume2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plume2",
"version": "0.2.1",
"version": "0.2.2",
"description": "a lightweight of flux for mobile web",
"main": "./es6/index.js",
"types": "./es6/typings/index.d.ts",
Expand Down
5 changes: 3 additions & 2 deletions packages/plume2/src/store-provder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ export default function StoreProvider(AppStore: TStore, opts?: IOptions) {
if (process.env.NODE_ENV != 'production') {
if ((this.store as any)._opts.debug) {
if (window) {
var cssRule =
const cssRule =
'color: rgb(249, 162, 34);' +
'font-size: 40px;' +
'font-weight: bold;' +
'text-shadow: 1px 1px 5px rgb(249, 162, 34);' +
'filter: dropshadow(color=rgb(249, 162, 34), offx=1, offy=1);';
console.log('%cplume2🚀', cssRule);
const version = require('../package.json').version;
console.log(`%cplume2@${version}🚀`, cssRule);
}
console.log(`${WrapperComponent.displayName} will mount 🚀`);
}
Expand Down

0 comments on commit 130e69b

Please sign in to comment.