Skip to content

Commit 03f1dae

Browse files
committed
fix: paste event add stopPropagation
1 parent fb73537 commit 03f1dae

File tree

12 files changed

+40
-39
lines changed

12 files changed

+40
-39
lines changed

_develop/scripts/release.sh

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ else
99
echo "Releasing $VERSION"
1010
fi
1111

12-
rm -r .release
12+
# rm -r .release
1313
rm -r dist
14-
mkdir .release
15-
mkdir .release/quill
14+
# mkdir .release
15+
# mkdir .release/quill
1616

1717
npm run build
1818
webpack --config _develop/webpack.config.js --env.minimize
19-
cp dist/quill.core.css dist/quill.bubble.css dist/quill.snow.css dist/quill.js dist/quill.core.js dist/quill.min.js dist/quill.min.js.map .release/quill/
19+
# cp dist/quill.core.css dist/quill.bubble.css dist/quill.snow.css dist/quill.js dist/quill.core.js dist/quill.min.js dist/quill.min.js.map .release/quill/
2020

21-
cd .release
21+
# cd .release
2222

2323
# printf "cdn: .\nversion: ." > jekyll.yml
2424
# jekyll build -s ../docs -d _site --config ../docs/_config.yml
@@ -33,18 +33,18 @@ cd .release
3333

3434
# tar -czf quill.tar.gz quill
3535

36-
aws s3 cp quill/quill.js s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/javascript; charset=utf-8" --profile quill
37-
aws s3 cp quill/quill.min.js s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/javascript; charset=utf-8" --profile quill
38-
aws s3 cp quill/quill.core.js s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/javascript; charset=utf-8" --profile quill
39-
aws s3 cp quill/quill.bubble.css s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "text/css; charset=utf-8" --profile quill
40-
aws s3 cp quill/quill.core.css s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "text/css; charset=utf-8" --profile quill
41-
aws s3 cp quill/quill.snow.css s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "text/css; charset=utf-8" --profile quill
42-
aws s3 cp quill/quill.min.js.map s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/json; charset=utf-8" --profile quill
43-
aws s3 sync s3://cdn.quilljs.com/$VERSION/ s3://cdn.quilljs.com/latest/ --profile quill
44-
45-
cd ..
46-
# git tag v$VERSION -m "Version $VERSION"
47-
# git push origin v$VERSION
48-
# git push origin master
49-
50-
npm publish --tag dev
36+
# aws s3 cp quill/quill.js s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/javascript; charset=utf-8" --profile quill
37+
# aws s3 cp quill/quill.min.js s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/javascript; charset=utf-8" --profile quill
38+
# aws s3 cp quill/quill.core.js s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/javascript; charset=utf-8" --profile quill
39+
# aws s3 cp quill/quill.bubble.css s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "text/css; charset=utf-8" --profile quill
40+
# aws s3 cp quill/quill.core.css s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "text/css; charset=utf-8" --profile quill
41+
# aws s3 cp quill/quill.snow.css s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "text/css; charset=utf-8" --profile quill
42+
# aws s3 cp quill/quill.min.js.map s3://cdn.quilljs.com/$VERSION/ --cache-control max-age=604800 --content-type "application/json; charset=utf-8" --profile quill
43+
# aws s3 sync s3://cdn.quilljs.com/$VERSION/ s3://cdn.quilljs.com/latest/ --profile quill
44+
45+
# cd ..
46+
git tag v$VERSION -m "Version $VERSION"
47+
git push origin v$VERSION
48+
git push origin develop
49+
50+
# npm publish --tag dev

core/selection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class Selection {
9999
);
100100
}, 1);
101101
}
102-
}, 1)
102+
}, 1);
103103
});
104104
}
105105

dist/quill.bubble.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Quill Editor v2.0.3
2+
* Quill Editor v2.0.5
33
* https://quilljs.com/
44
* Copyright (c) 2014, Jason Chen
55
* Copyright (c) 2013, salesforce.com

dist/quill.core.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Quill Editor v2.0.3
2+
* Quill Editor v2.0.5
33
* https://quilljs.com/
44
* Copyright (c) 2014, Jason Chen
55
* Copyright (c) 2013, salesforce.com

dist/quill.core.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/quill.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/quill.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/quill.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/quill.snow.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Quill Editor v2.0.3
2+
* Quill Editor v2.0.5
33
* https://quilljs.com/
44
* Copyright (c) 2014, Jason Chen
55
* Copyright (c) 2013, salesforce.com

dist/unit.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)