Skip to content

Commit ddceaf5

Browse files
authored
Remove component (#18)
1 parent 7f83b4a commit ddceaf5

File tree

5 files changed

+5
-28
lines changed

5 files changed

+5
-28
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ pids
1111
logs
1212
results
1313
build
14-
components
1514

1615
node_modules
1716
npm-debug.log

.npmignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
docs/
22
test/
33
build/
4-
components/
54
support/
65
coverage.html
7-
component.json
86
lib-cov
97
.travis.yml
108
Makefile

Makefile

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
#
33
# Tests
4-
#
4+
#
55

66
test: test-node test-typescript
77

8-
test-node:
8+
test-node:
99
@printf "\n ==> [Node.js]\n"
1010
@NODE_ENV=test node ./test/index.js
1111

@@ -17,25 +17,12 @@ test-browser:
1717
test-typescript:
1818
@./node_modules/.bin/tsc test/typings.ts index.d.ts --noEmit
1919

20-
#
21-
# Components
22-
#
23-
24-
build: components
25-
@./node_modules/.bin/component-build --dev
26-
27-
components: component.json
28-
@./node_modules/.bin/component-install --dev
29-
3020
#
3121
# Clean up
32-
#
33-
34-
clean: clean-components
22+
#
3523

36-
clean-components:
24+
clean:
3725
@rm -rf build
38-
@rm -rf components
3926

4027
.PHONY: test test-node test-browser
41-
.PHONY: clean clean-components
28+
.PHONY: clean

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010

1111
$ npm install assertion-error
1212

13-
### Component
14-
15-
`assertion-error` is available as a [component](https://github.com/component/component).
16-
17-
$ component install chaijs/assertion-error
18-
1913
## License
2014

2115
(The MIT License)

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
},
2424
"dependencies": {},
2525
"devDependencies": {
26-
"component": "*",
2726
"typescript": "^2.8.3"
2827
}
2928
}

0 commit comments

Comments
 (0)