Skip to content

Commit 5fb2bc1

Browse files
committed
feat(api): changes the api of filters and services
BREAKING CHANGES: export dist/*.js not supporting es module export, only umd and commonjs.
1 parent 8e3e986 commit 5fb2bc1

26 files changed

+361
-19739
lines changed

.babelrc

-17
This file was deleted.

.commitlintrc.json

-5
This file was deleted.

.eslintignore

-5
This file was deleted.

.eslintrc.js

-56
This file was deleted.

.gitignore

+17-67
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,23 @@
1-
# Created by https://www.gitignore.io/api/node,visualstudiocode
1+
.DS_Store
2+
node_modules
3+
/dist
24

3-
### Node ###
4-
# Logs
5-
logs
6-
*.log
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
710
npm-debug.log*
811
yarn-debug.log*
912
yarn-error.log*
1013

11-
# Runtime data
12-
pids
13-
*.pid
14-
*.seed
15-
*.pid.lock
16-
17-
# Directory for instrumented libs generated by jscoverage/JSCover
18-
lib-cov
19-
20-
# Coverage directory used by tools like istanbul
21-
coverage
22-
23-
# nyc test coverage
24-
.nyc_output
25-
26-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27-
.grunt
28-
29-
# Bower dependency directory (https://bower.io/)
30-
bower_components
31-
32-
# node-waf configuration
33-
.lock-wscript
34-
35-
# Compiled binary addons (http://nodejs.org/api/addons.html)
36-
build/Release
37-
38-
# Dependency directories
39-
node_modules/
40-
jspm_packages/
41-
42-
# Typescript v1 declaration files
43-
typings/
44-
45-
# Optional npm cache directory
46-
.npm
47-
48-
# Optional eslint cache
49-
.eslintcache
50-
51-
# Optional REPL history
52-
.node_repl_history
53-
54-
# Output of 'npm pack'
55-
*.tgz
56-
57-
# Yarn Integrity file
58-
.yarn-integrity
59-
60-
# dotenv environment variables file
61-
.env
62-
63-
# Generated code
64-
dist/
65-
66-
### VisualStudioCode ###
67-
.vscode/*
68-
!.vscode/settings.json
69-
!.vscode/tasks.json
70-
!.vscode/launch.json
71-
!.vscode/extensions.json
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw*
7222

73-
# End of https://www.gitignore.io/api/node,visualstudiocode
23+
*.lock

.npmignore

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
.travis.yml
66
yarn.lock
77
.github/
8-
.storybook/
98
coverage/
109
node_modules/
1110
src/
12-
stories/
13-
jest.*.js
14-
rollup.config.js
11+
tests/
12+
dist/demo.html

.nvmrc

-1
This file was deleted.

.storybook/config.js

-18
This file was deleted.

.storybook/webpack.config.js

-16
This file was deleted.

.travis.yml

-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ notifications:
77
node_js:
88
- '9'
99
- '8'
10-
- '10'
11-
before_install:
12-
- '[[ $(node -v) =~ ^v9.*$ ]] || npm install -g npm@latest' # skipped when using node 9
13-
- npm install -g greenkeeper-lockfile@1
14-
before_script: greenkeeper-lockfile-update
15-
after_script: greenkeeper-lockfile-upload
1610
after_success:
1711
- npm run travis-deploy-once "npm run semantic-release"
1812
branches:

0 commit comments

Comments
 (0)