Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
airuikun authored and ruikunai committed Oct 27, 2019
0 parents commit fa6210d
Show file tree
Hide file tree
Showing 17 changed files with 1,020 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"ie >= 9",
"iOS >= 8",
"Android >= 4"
]
}
}
]
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties"
]
}
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.zip
*.rar
*.log
.svn
node_modules
npm-debug.log*
.DS_Store
.vscode
.idea
9 changes: 9 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.zip
*.rar
*.log
.svn
node_modules
npm-debug.log*
.DS_Store
.vscode
.idea
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

### 使用方式

```js
npm run start
```

chrome打开: localhost:3000
打开控制台
随便点击页面上的元素
查看控制台console.log的输出即可
8 changes: 8 additions & 0 deletions dist/tracker.min.js

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

1 change: 1 addition & 0 deletions dist/tracker.min.js.map

Large diffs are not rendered by default.

257 changes: 257 additions & 0 deletions es/index.js

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

Loading

0 comments on commit fa6210d

Please sign in to comment.