Skip to content

Commit 8953490

Browse files
committed
Replacing Grunt build system with Gulp
updating makefile (disabled karma) bumping timeouts timing tweaksd Converted module to cjs split src task adjust timings update gitignore adjust timings gulp cleanup fixing karma config include libs update timing config Split default tasks add less path
1 parent b8ed46c commit 8953490

File tree

609 files changed

+42268
-38582
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

609 files changed

+42268
-38582
lines changed

Gruntfile.js

-324
This file was deleted.

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
.PHONY: compile release test
22
plugins=*
3-
GRUNT=node_modules/.bin/grunt
3+
GULP=node_modules/.bin/gulp
44
CURRENT_VERSION := $(shell sed -n '/"version":/{s/.*"version": "\([^"]*\)".*/\1/p;q}' package.json)
55

66
all: compile test
77
test:
88
npm test
99
compile:
1010
npm i
11-
rm -rf build
1211
rm -rf dist
13-
$(GRUNT) --plugins=$(plugins)
12+
$(GULP) loadDependencies
13+
$(GULP) --plugins=$(plugins)
1414
release:
1515
ifeq ($(strip $(version)),)
1616
@echo "\033[31mERROR:\033[0;39m No version provided."

0 commit comments

Comments
 (0)