Skip to content

Commit 92beda9

Browse files
committed
drop bower support
- remove dist file from VCS - absolves need for `BUILDTMP/mocha.js`; removed - add dist file to `.gitignore` - update `Makefile` accordingly - update `preversion` and `prepublishOnly` scripts - update `files` prop of `package.json` (`LICENSE` is an auto-add)
1 parent 58a4c6a commit 92beda9

File tree

7 files changed

+9
-16639
lines changed

7 files changed

+9
-16639
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
coverage/
22
mocha.js
3-
BUILDTMP
43
*.fixture.js

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ npm-debug.log*
1212
*.orig
1313
.nyc_output/
1414
coverage/
15-
BUILDTMP/
1615
yarn.lock
1716
package-lock.json
17+
mocha.js

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ TESTS = $(shell find test -name "*.js" -type f | sort)
1717

1818
all: mocha.js
1919

20-
mocha.js BUILDTMP/mocha.js: $(SRC) browser-entry.js
20+
mocha.js: $(SRC) browser-entry.js
2121
@printf "==> [Browser :: build]\n"
2222
mkdir -p ${@D}
2323
$(BROWSERIFY) ./browser-entry \
@@ -30,21 +30,21 @@ mocha.js BUILDTMP/mocha.js: $(SRC) browser-entry.js
3030

3131
clean:
3232
@printf "==> [Clean]\n"
33-
rm -rf BUILDTMP
33+
rm -f mocha.js
3434

3535
lint:
3636
@printf "==> [Test :: Lint]\n"
3737
npm run lint
3838

3939
test-node: test-bdd test-tdd test-qunit test-exports test-unit test-integration test-jsapi test-compilers test-requires test-reporters test-only test-global-only
4040

41-
test-browser: clean BUILDTMP/mocha.js test-browser-unit test-browser-bdd test-browser-qunit test-browser-tdd test-browser-exports
41+
test-browser: clean mocha.js test-browser-unit test-browser-bdd test-browser-qunit test-browser-tdd test-browser-exports
4242

4343
test: lint test-node test-browser
4444

4545
test-browser-unit:
4646
@printf "==> [Test :: Browser]\n"
47-
NODE_PATH=BUILDTMP $(KARMA) start --single-run
47+
NODE_PATH=. $(KARMA) start --single-run
4848

4949
test-browser-bdd:
5050
@printf "==> [Test :: Browser :: BDD]\n"

bower.json

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

0 commit comments

Comments
 (0)