Skip to content

Dev rollup #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
"ie": 8
}
},
"loose": true
"loose": true,
"modules": false
}]
],
"plugins": ["angularjs-annotate"]
"plugins": ["external-helpers"]
}
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[*]
indent_size = 4
indent_style = tab

[*.json]
indent_size = 2
indent_style = space
8 changes: 7 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,11 @@
},
"extends": [
"eslint:recommended"
]
],
"overrides": [{
"files": ["**/rollup.config.js", "bundle.js"],
"parserOptions": {
"sourceType": "module"
}
}]
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ bower_components
node_modules

*.bak
*.log
*.log
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Installation
Via npm:

```
npm install angular-datetime-input --save
npm install angular angular-datetime-input --save
```
```javascript
require("angular-datetime-input");
Expand All @@ -43,9 +43,7 @@ require("angular-datetime-input");
Or use pre-built dist:

```html
<!-- Don't forget to include custom-input -->
<script src="https://unpkg.com/custom-input/dist/custom-input.js"></script>
<script src="https://unpkg.com/angular-datetime-input/dist/datetime.js"></script>
<script src="https://unpkg.com/angular-datetime-input"></script>
```

Example
Expand Down
2 changes: 2 additions & 0 deletions bundle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// https://github.com/rollup/rollup-plugin-commonjs/issues/188
import "./index.js";
Loading