Skip to content

Commit c502641

Browse files
Fix build
1 parent 4679067 commit c502641

File tree

6 files changed

+131
-6
lines changed

6 files changed

+131
-6
lines changed

.jshintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"quotmark": "single",
33
"node": true,
44
"globals": {
5-
"angular": false,
5+
"angular": true,
66
"document": false,
77
"jasmine": false,
88
"module": false,

Gruntfile.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ module.exports = function(grunt) {
1616
},
1717
copy: {
1818
main: {
19-
files: [
19+
files: [{
20+
src: './bundle.js',
21+
dest: 'dist/'
22+
}
2023
// {expand: true, cwd: 'demo', src: ['script.js'], dest: 'dist'} // partials html file
2124
// {expand: true, cwd: 'app', src: ['*.*'], dest: 'dist/'}
2225
]
@@ -39,7 +42,7 @@ module.exports = function(grunt) {
3942
}
4043
},
4144
jsbeautifier: {
42-
files: ['*.js', 'src/**/*.js', 'test/unit/*.js', 'demo/*.js'],
45+
files: ['src/**/*.js', 'test/unit/*.js', 'demo/*.js'],
4346
options: {
4447
js: {
4548
indent_size: 2
@@ -106,7 +109,7 @@ module.exports = function(grunt) {
106109
// Register Task
107110
grunt.registerTask('dev', ['browserSync', 'watch']);
108111
grunt.registerTask('check', ['jshint', 'jsbeautifier']); // use this before commit
109-
grunt.registerTask('build', ['check', 'clean', 'concat', 'uglify']);
112+
grunt.registerTask('build', ['check', 'clean', 'concat', 'uglify', 'copy']);
110113
grunt.registerTask('test', ['build', 'karma']);
111114
grunt.registerTask('cov', ['coveralls']);
112115
};

bundle.js

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
/******/ (function(modules) { // webpackBootstrap
2+
/******/ // The module cache
3+
/******/ var installedModules = {};
4+
5+
/******/ // The require function
6+
/******/ function __webpack_require__(moduleId) {
7+
8+
/******/ // Check if module is in cache
9+
/******/ if(installedModules[moduleId])
10+
/******/ return installedModules[moduleId].exports;
11+
12+
/******/ // Create a new module (and put it into the cache)
13+
/******/ var module = installedModules[moduleId] = {
14+
/******/ exports: {},
15+
/******/ id: moduleId,
16+
/******/ loaded: false
17+
/******/ };
18+
19+
/******/ // Execute the module function
20+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
21+
22+
/******/ // Flag the module as loaded
23+
/******/ module.loaded = true;
24+
25+
/******/ // Return the exports of the module
26+
/******/ return module.exports;
27+
/******/ }
28+
29+
30+
/******/ // expose the modules object (__webpack_modules__)
31+
/******/ __webpack_require__.m = modules;
32+
33+
/******/ // expose the module cache
34+
/******/ __webpack_require__.c = installedModules;
35+
36+
/******/ // __webpack_public_path__
37+
/******/ __webpack_require__.p = '';
38+
39+
/******/ // Load entry module and return exports
40+
/******/ return __webpack_require__(0);
41+
/******/ })
42+
/************************************************************************/
43+
/******/ ([
44+
/* 0 */
45+
/***/ function(module, exports, __webpack_require__) {
46+
47+
module.exports = __webpack_require__(1);
48+
49+
50+
/***/ },
51+
/* 1 */
52+
/***/ function(module, exports) {
53+
54+
'use strict';
55+
56+
angular.module('validation', ['validation.provider', 'validation.directive']);
57+
angular.module('validation.provider', []);
58+
angular.module('validation.directive', ['validation.provider']);
59+
60+
/***/ }
61+
/******/ ]);

dist/bundle.js

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
/******/ (function(modules) { // webpackBootstrap
2+
/******/ // The module cache
3+
/******/ var installedModules = {};
4+
5+
/******/ // The require function
6+
/******/ function __webpack_require__(moduleId) {
7+
8+
/******/ // Check if module is in cache
9+
/******/ if(installedModules[moduleId])
10+
/******/ return installedModules[moduleId].exports;
11+
12+
/******/ // Create a new module (and put it into the cache)
13+
/******/ var module = installedModules[moduleId] = {
14+
/******/ exports: {},
15+
/******/ id: moduleId,
16+
/******/ loaded: false
17+
/******/ };
18+
19+
/******/ // Execute the module function
20+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
21+
22+
/******/ // Flag the module as loaded
23+
/******/ module.loaded = true;
24+
25+
/******/ // Return the exports of the module
26+
/******/ return module.exports;
27+
/******/ }
28+
29+
30+
/******/ // expose the modules object (__webpack_modules__)
31+
/******/ __webpack_require__.m = modules;
32+
33+
/******/ // expose the module cache
34+
/******/ __webpack_require__.c = installedModules;
35+
36+
/******/ // __webpack_public_path__
37+
/******/ __webpack_require__.p = '';
38+
39+
/******/ // Load entry module and return exports
40+
/******/ return __webpack_require__(0);
41+
/******/ })
42+
/************************************************************************/
43+
/******/ ([
44+
/* 0 */
45+
/***/ function(module, exports, __webpack_require__) {
46+
47+
module.exports = __webpack_require__(1);
48+
49+
50+
/***/ },
51+
/* 1 */
52+
/***/ function(module, exports) {
53+
54+
'use strict';
55+
56+
angular.module('validation', ['validation.provider', 'validation.directive']);
57+
angular.module('validation.provider', []);
58+
angular.module('validation.directive', ['validation.provider']);
59+
60+
/***/ }
61+
/******/ ]);

main.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
var angular = require('./node_modules/angular/angular.js');
2+
var validationApp = require('./src/module.js');

src/main.js

-2
This file was deleted.

0 commit comments

Comments
 (0)