Skip to content

Commit e5d0b35

Browse files
committed
Merge pull request #9 from json-schema-form/es6-changes-and-directive
Es6 changes and directive
2 parents 9528c8c + 6d7f495 commit e5d0b35

File tree

21 files changed

+293
-237
lines changed

21 files changed

+293
-237
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
node_modules
2+
app/index.js
3+
app/index.js.map

.jscsrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
2+
"preset": "airbnb",
3+
"esnext": true
34
}

.jshintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
2+
"esnext": true
33
}

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
index.js
2+
node_modules

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Textalk
3+
Copyright (c) 2015 Simon Korn
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

app/index.js

Lines changed: 0 additions & 168 deletions
This file was deleted.

app/templates/base/bower.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
"name": "<%= paramName %>",
33
"version": "1.0.0",
44
"license": "MIT",
5+
"author": "<%= username %>",
6+
"main": [
7+
"dist/<%= paramName %>.min.js"
8+
],
9+
"keywords": [
10+
"angular-schema-form",
11+
"schema-form",
12+
"form",
13+
"json",
14+
"json-schema",
15+
"schema"
16+
],
517
"ignore": [
618
"**/.*",
719
"node_modules",

app/templates/base/test/index.html renamed to app/templates/base/demo/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
$scope.model = {};
2323

24-
$scope.debug = {schema: $scope.schema, form: $scope.form};
24+
$scope.debug = {schema: angular.copy($scope.schema), form: angular.copy($scope.form)};
2525

2626
});
2727

File renamed without changes.

app/templates/base/gulp/index.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)