Skip to content

Commit 9500134

Browse files
author
Antonio Marcos SS Jr
committed
mendhak#137 Fixed [Deprectable]
- added a file that's not minified. - updated [deprectable]angular.intro.js to angular-intro.deprectable.js to the standard format.
1 parent 3cc8935 commit 9500134

File tree

6 files changed

+297
-4
lines changed

6 files changed

+297
-4
lines changed

Gruntfile.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module.exports = function (grunt) {
44
grunt.loadNpmTasks("grunt-tslint");
55
grunt.loadNpmTasks('grunt-ts');
66

7+
78
// Project configuration.
89
grunt.initConfig({
910
connect: {
@@ -36,7 +37,18 @@ module.exports = function (grunt) {
3637
build: {
3738
src: ['src/ng-intro.component.js'],
3839
dest: 'build/angular-intro.min.js'
39-
}
40+
},
41+
buildNotMinified: {
42+
compress: false,
43+
options: {
44+
beautify: true,
45+
mangle : false,
46+
compress : false
47+
},
48+
files: {
49+
'build/angular-intro.js': ['src/ng-intro.component.js']
50+
}
51+
},
4052
},
4153
tslint: {
4254
options: {

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-intro.js",
3-
"version": "3.3.0",
3+
"version": "4.0.0",
44
"main": "build/angular-intro.min.js",
55
"description": "Angular directive to wrap intro.js",
66
"license": "MIT",

build/angular-intro.js

Lines changed: 281 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/angular-intro.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-intro.js",
3-
"version": "3.3.0",
3+
"version": "4.0.0",
44
"description": "Angular directive to wrap intro.js",
55
"main": "src/ng-intro.component.js",
66
"types": "build/ng-intro.component.d.ts",
File renamed without changes.

0 commit comments

Comments
 (0)