Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit 7c9b03b

Browse files
committed
bundling
1 parent 49ce14f commit 7c9b03b

Some content is hidden

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

61 files changed

+14803
-7792
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ lerna-debug.log*
88
packages/extension/playground/*
99
!packages/extension/playground/.vscode
1010
!packages/extension/playground/.vscode/*
11+
tmp
1112

1213
# Diagnostic reports (https://nodejs.org/api/report.html)
1314
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

Diff for: .releaserc.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
verifyConditions: ['semantic-release-vsce'],
3+
prepare: [
4+
{
5+
path: 'semantic-release-vsce',
6+
packageVsix: 'extension.vsix',
7+
},
8+
],
9+
publish: ['semantic-release-vsce'],
10+
}

Diff for: .travis.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
language: node_js
2+
3+
node_js: lts/*
4+
5+
if: tag IS blank
6+
7+
install:
8+
- |
9+
npm ci
10+
- |
11+
if [ $TRAVIS_OS_NAME == "linux" ]; then
12+
export DISPLAY=':99.0'
13+
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
14+
fi
15+
16+
stages:
17+
- test
18+
- name: release
19+
if: branch = master AND type = push AND fork = false
20+
21+
jobs:
22+
include:
23+
- stage: test
24+
script:
25+
- npm run e2e
26+
- npm test
27+
- npm run package
28+
- stage: release
29+
script:
30+
- npm run publish

Diff for: Issues.md

+12
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,15 @@ ask user if he/she
66
77
and dont ask if it is already enabled or if the user has already been asked
88
-->
9+
10+
<!-- TODO bug
11+
unicode regex and cjk regex are unnecessarily bundled inside server chunk
12+
13+
14+
-->
15+
16+
17+
<!-- TODO maybe don't include prettier in bundle and after install run npm i -g prettier
18+
then use the global prettier version for formatting or the local version of prettier if there is one
19+
20+
-->

0 commit comments

Comments
 (0)