Skip to content

Commit c7e8ddd

Browse files
Merge branch 'release/2.1.0' into develop
2 parents 985eadd + 5337096 commit c7e8ddd

File tree

1,140 files changed

+9114
-12867
lines changed

Some content is hidden

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

1,140 files changed

+9114
-12867
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ node_modules
22
dist
33
out
44
coverage
5-
update.package.ts

.eslintrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@
5454
"files": ["**/*.d.ts"],
5555
"rules": {
5656
"constructor-super": "off",
57-
"typescript/generic-type-naming": "off"
57+
"typescript/explicit-member-accessibility": "off",
58+
"typescript/generic-type-naming": "off",
59+
"typescript/no-unused-vars": "off"
5860
}
5961
}
6062
],

.gitignore

Lines changed: 1 addition & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,9 @@
1-
# Created by .ignore support plugin (hsz.mobi)
2-
### Node template
3-
# Logs
4-
logs
51
*.log
6-
npm-debug.log*
7-
yarn-debug.log*
8-
yarn-error.log*
9-
10-
# Runtime data
11-
pids
12-
*.pid
13-
*.seed
14-
*.pid.lock
15-
16-
# Directory for instrumented libs generated by jscoverage/JSCover
17-
lib-cov
18-
19-
# Coverage directory used by tools like istanbul
202
coverage
21-
22-
# nyc test coverage
233
.nyc_output
24-
25-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26-
.grunt
27-
28-
# Bower dependency directory (https://bower.io/)
29-
bower_components
30-
31-
# node-waf configuration
32-
.lock-wscript
33-
34-
# Compiled binary addons (https://nodejs.org/api/addons.html)
35-
build/Release
36-
37-
# Dependency directories
384
node_modules/
39-
jspm_packages/
405

41-
# Typescript v1 declaration files
42-
typings/
43-
44-
# Optional npm cache directory
45-
.npm
46-
47-
# Optional eslint cache
48-
.eslintcache
49-
50-
# Optional REPL history
51-
.node_repl_history
52-
53-
# Output of 'npm pack'
54-
*.tgz
55-
56-
# Yarn Integrity file
57-
.yarn-integrity
58-
59-
# dotenv environment variables file
606
.env
61-
62-
63-
.DS_Store
7+
.idea
648
out
65-
.awcache
669
dist
67-
.idea

.travis.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,34 @@
1+
if: tag IS blank
12
language: node_js
2-
node_js: "10.15"
3+
node_js: '10.15'
4+
cache: yarn
35

4-
cache: npm
6+
before_install:
7+
- curl -o- -L https://yarnpkg.com/install.sh | bash
8+
- export PATH="$HOME/.yarn/bin:$PATH"
59

610
install:
7-
- npm install
8-
- tsc --version
9-
- ts-node --version
11+
- yarn --offline
1012

1113
before_script:
12-
- npm run lint
13-
- npm run coverage
14-
- npm run coverage-report
15-
- npm run bump-version
14+
- yarn lint
15+
- yarn coverage
16+
- yarn coverage-report
17+
- yarn bump-version
1618

1719
script:
18-
- npm run build
20+
- yarn build
1921

2022
deploy:
2123
provider: npm
2224
25+
skip_cleanup: true
2326
api_key:
2427
secure: mpyvv6H+1vN483vzQaQjc2biy6jja6AoXezAusn3BbmwNXB8ZEal7q4N2bkPkOgOVyQyUbvyY4ThwadZuMcU/RujgRNxM0w3tp2A8LAN9R6PUJAifrsVX8zwNoiktEaXnWbVJU5hmng0WgnYM1t0YprWhp2G6LmJS/mYGMnsZs+cZCWQfue+2eiwlDqLsdDOGDz/0eYeVwbW4BfYpu1lNaw2z2CCnxLwaJBrnlRT9PJKHmJ46OKW+8rQHxNfMSsbncBPMPyRbBlVChymUOsS6pTuOZR17vNmmyC4pU+t/lcdVR6YuyQGBv1Nynb6UkevVLGWKjdILN9zlT/s6HI/gWKZHhgzg4hQDvxDT/RUVRpHOT+KZIaKNI0Ny0XHuaELZBOR0NEt8qJbwBmFrr5sN+Eg2sbTxenePst1x36NJUaKOb3nKFoqovS02EP8AnvUWKeXgPAVP4OiJosZ6CjcHmejkDRMwwY7T/nFjzfNpBYkSrsK/lluZtaBm2aqbPoTF0YUl49LeMfG12m7mYSbwTtkAQmK7lKPgYEKJHkRR6Lu37dBoX5bG7wycp4ma4YW0hfaYVwYYsYywHGbMGI8lGHjekavBBDpt8AFd1aRlgWvKPfrBFcHk5OjfoWqI48kWnlydtcGZT1swYP2x7xMLDVEq23WBjxVQLME+cnn/l4=
2528
on:
2629
repo: DanielSchaffer/webpack-babel-multi-target-plugin
2730
all_branches: true
28-
condition: $TRAVIS_BRANCH =~ ^master|release\/\d+\.\d+\.\d+$
31+
condition: $TRAVIS_BRANCH =~ ^master|release\/[0-9]+\.[0-9]+\.[0-9]$
2932

3033
after_deploy:
31-
- git push && git push --tags
34+
- ./script/push
8.08 KB
Binary file not shown.
2.92 KB
Binary file not shown.
29.1 KB
Binary file not shown.
19.6 KB
Binary file not shown.
1.7 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)