Skip to content

203 #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 41 commits into
base: master
Choose a base branch
from
Open

203 #21

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
fe09b81
Update dependencies, move to Yarn, and bump version
angelsl Aug 8, 2020
bb87e99
Properly traverse document in setInitialValue
angelsl Aug 9, 2020
5c67be5
Fix Logdown arguments
angelsl Aug 9, 2020
830a8ef
Let Logdown follow localStorage/environment debug setting
angelsl Aug 9, 2020
e7d2db6
Make more robust against desynchronisation
angelsl Aug 9, 2020
592fcfd
Do minor cleanup
angelsl Aug 9, 2020
09b0564
Add Prettier configuration
angelsl Aug 9, 2020
7f7d7d9
Format source
angelsl Aug 9, 2020
ace87f2
Update dependencies
angelsl Aug 9, 2020
21eafeb
Change ESLint configuration and remove unused dependencies
angelsl Aug 9, 2020
06f5640
Fix missing catch binding
angelsl Aug 9, 2020
c34f10b
Update yarn.lock
angelsl Aug 9, 2020
9e544d8
Release 2.0.1
angelsl Aug 9, 2020
75fc00e
Fix description
angelsl Aug 9, 2020
b0269d0
Bump minimist from 1.2.5 to 1.2.8 (#2)
dependabot[bot] Mar 8, 2024
7b6bd6e
Bump ssri from 6.0.1 to 6.0.2 (#6)
dependabot[bot] Mar 8, 2024
9ad352f
Bump loader-utils from 1.4.0 to 1.4.2 (#7)
dependabot[bot] Mar 8, 2024
dd73f6b
Bump y18n from 4.0.0 to 4.0.3 (#8)
dependabot[bot] Mar 8, 2024
a5c3dfa
Bump decode-uri-component from 0.2.0 to 0.2.2 (#9)
dependabot[bot] Mar 8, 2024
951ca29
Bump qs from 6.5.2 to 6.5.3 (#10)
dependabot[bot] Mar 8, 2024
74bf4bd
Bump async from 2.6.3 to 2.6.4 (#11)
dependabot[bot] Mar 8, 2024
a91b2ba
Bump ansi-regex from 3.0.0 to 3.0.1 (#12)
dependabot[bot] Mar 8, 2024
40d936b
Bump ws from 7.3.1 to 7.5.9 (#13)
dependabot[bot] Mar 8, 2024
078d972
Bump get-func-name from 2.0.0 to 2.0.2 (#14)
dependabot[bot] Mar 8, 2024
afc6cc6
Bump terser from 4.8.0 to 4.8.1 (#15)
dependabot[bot] Mar 8, 2024
68c397d
Bump ini from 1.3.5 to 1.3.8 (#16)
dependabot[bot] Mar 8, 2024
d30a76b
Bump pathval from 1.1.0 to 1.1.1 (#17)
dependabot[bot] Mar 8, 2024
ce8bff8
Bump elliptic from 6.5.3 to 6.5.5 (#18)
dependabot[bot] Mar 8, 2024
06c9789
Bump path-parse from 1.0.6 to 1.0.7 (#20)
dependabot[bot] Mar 8, 2024
45d4618
Bump lodash from 4.17.19 to 4.17.21 (#21)
dependabot[bot] Mar 8, 2024
82e5d1c
Bump word-wrap from 1.2.3 to 1.2.5 (#22)
dependabot[bot] Mar 8, 2024
d54ddaf
Bump browserslist from 4.14.0 to 4.23.0 (#24)
dependabot[bot] Mar 8, 2024
919be8b
Bump @babel/traverse from 7.11.0 to 7.24.0 (#3)
dependabot[bot] Mar 8, 2024
64970a7
Bump browserify-sign from 4.2.1 to 4.2.3 (#4)
dependabot[bot] Mar 8, 2024
4a6d3ef
Bump json5 from 1.0.1 to 1.0.2 (#5)
dependabot[bot] Mar 8, 2024
67cc123
Bump semver from 5.7.1 to 5.7.2 (#19)
dependabot[bot] Mar 8, 2024
0b3e1fe
Bump jsdom from 16.4.0 to 16.5.0 (#23)
dependabot[bot] Mar 8, 2024
0570227
Bump webpack to v5 (#25)
RichDom2185 May 12, 2024
750c967
Bump ws from 7.5.9 to 7.5.10 (#27)
dependabot[bot] Jun 21, 2024
c53e693
Feat/participant indicator (#26)
izruff Jun 30, 2024
dce90e6
bumping version to 2.0.3
martin-henz Jul 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
{ "presets": ["latest"] }
{
"presets": [
[
"@babel/preset-env",
{
"targets": ["Firefox ESR", "last 2 chrome versions", "last 2 safari versions"],
"loose": false
}
]
]
}
16 changes: 8 additions & 8 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module.exports = {
"extends": "airbnb",
"installedESLint": true,
"plugins": [
"react",
"jsx-a11y",
"import"
]
};
root: true,
extends: ['eslint:recommended'],
rules: {
eqeqeq: ['error', 'always']
},
parserOptions: { ecmaVersion: 11, sourceType: 'module' },
env: { es6: true, node: true }
};
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
distribution
7 changes: 7 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": true,
"singleQuote": true,
"printWidth": 100,
"arrowParens": "always",
"trailingComma": "none"
}
13 changes: 1 addition & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,4 @@ language: node_js
notifications:
email: false
node_js:
- '8'

jobs:
include:
# Define the release stage that runs semantic-release
- stage: release
node_js: lts/*
deploy:
provider: script
skip_cleanup: true
script:
- npx semantic-release
- '14'
2 changes: 1 addition & 1 deletion ace
Submodule ace updated 831 files
Loading