Skip to content

Commit 7928f75

Browse files
committed
support single file
1 parent a17f64a commit 7928f75

File tree

7 files changed

+286
-7
lines changed

7 files changed

+286
-7
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
.DS_Store

.npmignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
.DS_Store?
55
.travis.yml
66

7-
/src/build.js
7+
src/build.js
88
/node_modules
9-
/example
9+
example/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# lasso-analyzer
22

33
[![npm version](https://badge.fury.io/js/lasso-analyzer.svg)](https://badge.fury.io/js/lasso-analyzer)
4-
[![Build Status](https://travis-ci.org/ajay2507/lasso-analyzer.svg?branch=master)](https://travis-ci.org/pajaydev/lasso-analyzer)
4+
[![Build Status](https://travis-ci.org/pajaydev/lasso-analyzer.svg?branch=master)](https://travis-ci.org/pajaydev/lasso-analyzer)
55

66
Lasso-analyzer is a tool for analyzing project bundles created by Lasso. We can easily catch the large and/or duplicate modules which might be either bloating up
77
your bundle.

package-lock.json

Lines changed: 279 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lasso-analyzer",
3-
"version": "1.2.1",
3+
"version": "1.3.2",
44
"description": "A tool to analyze the bundle created by Lasso",
55
"main": "src/index.js",
66
"bin": {
@@ -18,7 +18,7 @@
1818
},
1919
"repository": {
2020
"type": "git",
21-
"url": "git@github.com:ajay2507/lasso-analyzer.git"
21+
"url": "git@github.com:pajaydev/lasso-analyzer.git"
2222
},
2323
"keywords": [
2424
"analyze",

src/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,4 @@ function replaceTreeDate(lassoHTML, treeData) {
6969
return lassoHTML.replace('@@WEBTREEMAPDATA', treeToString);
7070
}
7171

72-
bundleAnalyzer('demo.js', '');
7372
module.exports = bundleAnalyzer;

0 commit comments

Comments
 (0)