Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: polymer_1.0.4/bower_components/hydrolysis/README.md

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # hydrolysis
2
3 Static anlaysis utilities for polymer.
4
5 ## Install
6 ```
7 npm install hydrolysis
8 ```
9
10 ## Usage
11 ```js
12 var hyd = require('hydrolysis');
13
14 hyd.Analyzer.analyze('path-to-polymer-element.html')
15 .then(function(analyzer) {
16 console.log(analyzer.elementsByTagName['my-element'])
17 });
18 ```
19
20 For more detail, see the [API Docs](API.md).
21
22
23 ## Developing
24 You need [wct](https://github.com/Polymer/web-component-tester) to run the tests .
25
26 Run a one-off build of the project:
27
28 ```sh
29 npm run build
30 ```
31
32 Or watch the source for changes, and rebuild each time a file is modified:
33
34 ```sh
35 npm run watch
36 ```
OLDNEW
« no previous file with comments | « polymer_1.0.4/bower_components/hydrolysis/LICENSE ('k') | polymer_1.0.4/bower_components/hydrolysis/bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698