Browse Source

v0.1

tags/0.1.0
Robin Thoni 8 years ago
parent
commit
38e8c716e4
4 changed files with 27 additions and 1 deletions
  1. 1
    0
      .gitignore
  2. 24
    0
      Gruntfile.js
  3. 1
    1
      bower.json
  4. 1
    0
      dist/luticate-auth.min.js

+ 1
- 0
.gitignore View File

@@ -1 +1,2 @@
1 1
 /.idea
2
+/node_modules

+ 24
- 0
Gruntfile.js View File

@@ -0,0 +1,24 @@
1
+/**
2
+ * Created by robin on 11/10/15.
3
+ */
4
+
5
+module.exports = function(grunt) {
6
+
7
+    grunt.initConfig({
8
+        uglify: {
9
+            demo: {
10
+                files: {
11
+                    'dist/luticate-auth.min.js': [
12
+                        'src/luticateauth.js',
13
+                        'src/*.js'
14
+                    ]
15
+                }
16
+            }
17
+        }
18
+    });
19
+
20
+    grunt.loadNpmTasks('grunt-contrib-uglify');
21
+
22
+    grunt.registerTask('default', ['uglify']);
23
+
24
+};

+ 1
- 1
bower.json View File

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "name": "luticate-auth",
3
-  "version": "0.0.0",
3
+  "version": "0.1.0",
4 4
   "authors": [
5 5
     "Robin THONI <robin@rthoni.com>"
6 6
   ],

+ 1
- 0
dist/luticate-auth.min.js
File diff suppressed because it is too large
View File


Loading…
Cancel
Save