Skip to content

Commit 6232dd9

Browse files
author
Matt Lewis
committed
chore: scaffold the project with yeoman
0 parents  commit 6232dd9

20 files changed

+609
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
.DS_Store
3+
node_modules
4+
typings
5+
coverage

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: node_js
2+
3+
node_js:
4+
- '6'
5+
6+
script: npm test
7+
8+
notifications:
9+
email: false

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Matt Lewis
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# angular2 resizable
2+
[![Build Status](https://travis-ci.org/mattlewis92/angular2-resizable.svg?branch=master)](https://travis-ci.org/mattlewis92/angular2-resizable)
3+
[![npm version](https://badge.fury.io/js/angular2-resizable.svg)](http://badge.fury.io/js/angular2-resizable)
4+
[![devDependency Status](https://david-dm.org/mattlewis92/angular2-resizable/dev-status.svg)](https://david-dm.org/mattlewis92/angular2-resizable#info=devDependencies)
5+
[![GitHub issues](https://img.shields.io/github/issues/mattlewis92/angular2-resizable.svg)](https://github.com/mattlewis92/angular2-resizable/issues)
6+
[![GitHub stars](https://img.shields.io/github/stars/mattlewis92/angular2-resizable.svg)](https://github.com/mattlewis92/angular2-resizable/stargazers)
7+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/mattlewis92/angular2-resizable/master/LICENSE)
8+
9+
## Demo
10+
https://mattlewis92.github.io/angular2-resizable/
11+
12+
## Table of contents
13+
14+
- [About](#about)
15+
- [Installation](#installation)
16+
- [Documentation](#documentation)
17+
- [Development](#development)
18+
- [License](#licence)
19+
20+
## About
21+
22+
An angular2 directive that allows an element to be dragged and resized
23+
24+
## Installation
25+
26+
Install through npm:
27+
```
28+
npm install --save @angular/[email protected] angular2-resizable
29+
```
30+
31+
Then use it in your app like so:
32+
33+
```typescript
34+
import {Component} from '@angular/core';
35+
import {HelloWorld} from 'angular2-resizable';
36+
37+
@Component({
38+
selector: 'demo-app',
39+
directives: [HelloWorld],
40+
template: '<hello-world></hello-world>'
41+
})
42+
export class DemoApp {}
43+
```
44+
45+
You may also find it useful to view the [demo source](https://github.com/mattlewis92/angular2-resizable/blob/master/demo/demo.ts).
46+
47+
### Usage without a module bundler
48+
```
49+
<script src="node_modules/angular2-resizable/angular2-resizable.js"></script>
50+
<script>
51+
// everything is exported angular2Resizable namespace
52+
</script>
53+
```
54+
55+
## Documentation
56+
All documentation is auto-generated from the source via typedoc and can be viewed here:
57+
https://mattlewis92.github.io/angular2-resizable/docs/
58+
59+
## Development
60+
61+
### Prepare your environment
62+
* Install [Node.js](http://nodejs.org/) and NPM (should come with)
63+
* Install local dev dependencies: `npm install` while current directory is this repo
64+
65+
### Development server
66+
Run `npm start` to start a development server on port 8000 with auto reload + tests.
67+
68+
### Testing
69+
Run `npm test` to run tests once or `npm run test:watch` to continually run tests.
70+
71+
### Release
72+
* Bump the version in package.json (once the module hits 1.0 this will become automatic)
73+
```bash
74+
npm run release
75+
```
76+
77+
## License
78+
79+
MIT

angular2-resizable.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {HelloWorld} from './src/helloWorld.component';
2+
3+
export * from './src/helloWorld.component';
4+
5+
// for angular-cli
6+
export default {
7+
directives: [HelloWorld]
8+
};

demo/demo.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import {Component} from '@angular/core';
2+
import {HelloWorld} from './../angular2-resizable';
3+
4+
@Component({
5+
selector: 'demo-app',
6+
directives: [HelloWorld],
7+
template: '<hello-world></hello-world>'
8+
})
9+
export class DemoApp {}

demo/entry.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import 'reflect-metadata';
2+
import 'zone.js/dist/zone';
3+
import {enableProdMode} from '@angular/core';
4+
import {bootstrap} from '@angular/platform-browser-dynamic';
5+
import {DemoApp} from './demo';
6+
7+
declare var ENV: string;
8+
if (ENV === 'production') {
9+
enableProdMode();
10+
}
11+
12+
bootstrap(DemoApp);

demo/index.html

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta http-equiv="x-ua-compatible" content="ie=edge">
7+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
8+
<title>angular2 resizable</title>
9+
</head>
10+
<body>
11+
12+
<a href="https://github.com/mattlewis92/angular2-resizable" class="hidden-xs">
13+
<img
14+
style="position: absolute; top: 0; right: 0; border: 0; z-index: 2000"
15+
src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67"
16+
alt="Fork me on GitHub"
17+
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
18+
</a>
19+
20+
<nav class="navbar navbar-default" role="navigation">
21+
<div class="container-fluid">
22+
<div class="navbar-header">
23+
<a class="navbar-brand" href="#">angular2 resizable</a>
24+
</div>
25+
<ul class="nav navbar-nav hidden-xs">
26+
<li><a href="#demo">Demo</a></li>
27+
<li><a href="https://github.com/mattlewis92/angular2-resizable#installation">Installation</a></li>
28+
<li><a href="https://mattlewis92.github.io/angular2-resizable/docs/">Documentation</a></li>
29+
</ul>
30+
</div>
31+
</nav>
32+
33+
<div class="container-fluid" id="demo">
34+
<demo-app>Loading demo...</demo-app>
35+
</div>
36+
37+
<script src="demo.js" async></script>
38+
39+
</body>
40+
</html>

karma.conf.js

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
'use strict';
2+
3+
const webpack = require('webpack');
4+
const WATCH = process.argv.indexOf('--watch') > -1;
5+
6+
module.exports = function(config) {
7+
config.set({
8+
9+
// base path that will be used to resolve all patterns (eg. files, exclude)
10+
basePath: './',
11+
12+
// frameworks to use
13+
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
14+
frameworks: ['jasmine'],
15+
16+
// list of files / patterns to load in the browser
17+
files: [
18+
'test/entry.ts'
19+
],
20+
21+
// list of files to exclude
22+
exclude: [
23+
],
24+
25+
// preprocess matching files before serving them to the browser
26+
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
27+
preprocessors: {
28+
'test/entry.ts': ['webpack', 'sourcemap']
29+
},
30+
31+
webpack: {
32+
devtool: 'inline-source-map',
33+
resolve: {
34+
extensions: ['', '.ts', '.js']
35+
},
36+
module: {
37+
preLoaders: [{
38+
test: /\.ts$/, loader: 'tslint', exclude: /node_modules/
39+
}],
40+
loaders: [{
41+
test: /\.ts$/, loader: 'ts', exclude: /node_modules/
42+
}],
43+
postLoaders: [{
44+
test: /\.ts$/,
45+
exclude: /(test|node_modules)/,
46+
loader: 'istanbul-instrumenter'
47+
}]
48+
},
49+
tslint: {
50+
emitErrors: !WATCH,
51+
failOnHint: false
52+
},
53+
plugins: WATCH ? [] : [new webpack.NoErrorsPlugin()]
54+
},
55+
56+
coverageReporter: {
57+
reporters: [{
58+
type: 'text-summary'
59+
}, {
60+
type: 'html'
61+
}]
62+
},
63+
64+
// test results reporter to use
65+
// possible values: 'dots', 'progress'
66+
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
67+
reporters: ['progress', 'coverage'],
68+
69+
// web server port
70+
port: 9876,
71+
72+
// enable / disable colors in the output (reporters and logs)
73+
colors: true,
74+
75+
// level of logging
76+
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
77+
logLevel: config.LOG_INFO,
78+
79+
// enable / disable watching file and executing tests whenever any file changes
80+
autoWatch: WATCH,
81+
82+
// start these browsers
83+
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
84+
browsers: ['PhantomJS'],
85+
86+
// Continuous Integration mode
87+
// if true, Karma captures browsers, runs the tests and exits
88+
singleRun: !WATCH
89+
});
90+
};

package.json

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
{
2+
"name": "angular2-resizable",
3+
"version": "0.0.0",
4+
"description": "An angular2 directive that allows an element to be dragged and resized",
5+
"main": "./angular2-resizable.js",
6+
"typings": "./angular2-resizable.d.ts",
7+
"scripts": {
8+
"prestart": "typings install",
9+
"start": "concurrently \"webpack-dev-server\" \"npm run test:watch\" \"open http://localhost:8000\"",
10+
"build:demo": "webpack -p",
11+
"build:dist": "webpack --config webpack.config.dist.js",
12+
"pretest": "typings install",
13+
"test": "karma start",
14+
"test:watch": "karma start --watch",
15+
"clean": "del ./src/*.d.ts ./demo/*.d.ts ./test/*.d.ts angular2-resizable.d.ts angular2-resizable.js*",
16+
"commit": "git-cz",
17+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
18+
"typedoc": "typedoc --options typedoc.json angular2-resizable.ts src/*.ts",
19+
"gh-pages": "git checkout gh-pages && git merge master && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master",
20+
"prerelease": "npm test",
21+
"release": "standard-version --first-release && git push --follow-tags origin master && npm run build:dist && npm publish",
22+
"postrelease": "npm run clean && npm run gh-pages"
23+
},
24+
"repository": {
25+
"type": "git",
26+
"url": "git+https://github.com/mattlewis92/angular2-resizable.git"
27+
},
28+
"keywords": [
29+
"angular2"
30+
],
31+
"author": "Matt Lewis",
32+
"license": "MIT",
33+
"bugs": {
34+
"url": "https://github.com/mattlewis92/angular2-resizable/issues"
35+
},
36+
"homepage": "https://github.com/mattlewis92/angular2-resizable#readme",
37+
"devDependencies": {
38+
"@angular/common": "2.0.0-rc.1",
39+
"@angular/compiler": "2.0.0-rc.1",
40+
"@angular/core": "2.0.0-rc.1",
41+
"@angular/platform-browser": "2.0.0-rc.1",
42+
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
43+
"commitizen": "~2.8.1",
44+
"concurrently": "~2.1.0",
45+
"conventional-changelog": "~1.1.0",
46+
"conventional-changelog-cli": "~1.2.0",
47+
"cz-conventional-changelog": "~1.1.6",
48+
"del-cli": "~0.2.0",
49+
"es6-shim": "~0.35.0",
50+
"ghooks": "~1.2.1",
51+
"istanbul-instrumenter-loader": "~0.2.0",
52+
"jasmine-core": "~2.4.1",
53+
"karma": "~0.13.22",
54+
"karma-coverage": "~1.0.0",
55+
"karma-jasmine": "~1.0.2",
56+
"karma-phantomjs-launcher": "~1.0.0",
57+
"karma-sourcemap-loader": "~0.3.7",
58+
"karma-webpack": "~1.7.0",
59+
"phantomjs-prebuilt": "~2.1.7",
60+
"reflect-metadata": "0.1.2",
61+
"rxjs": "5.0.0-beta.6",
62+
"standard-version": "~2.2.1",
63+
"ts-loader": "~0.8.2",
64+
"tslint": "~3.10.0",
65+
"tslint-loader": "~2.1.4",
66+
"typedoc": "~0.3.12",
67+
"typescript": "~1.8.10",
68+
"typings": "~1.0.4",
69+
"validate-commit-msg": "~2.6.1",
70+
"webpack": "~1.13.0",
71+
"webpack-dev-server": "~1.14.1",
72+
"zone.js": "~0.6.12"
73+
},
74+
"peerDependencies": {
75+
"@angular/core": "2.0.0-rc.1"
76+
},
77+
"files": [
78+
"angular2-resizable.js",
79+
"angular2-resizable.js.map",
80+
"angular2-resizable.d.ts",
81+
"src/**/*.d.ts"
82+
],
83+
"config": {
84+
"ghooks": {
85+
"commit-msg": "validate-commit-msg"
86+
},
87+
"commitizen": {
88+
"path": "node_modules/cz-conventional-changelog"
89+
}
90+
}
91+
}

0 commit comments

Comments
 (0)