Skip to content
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

Transitions fix #4742

Closed
wants to merge 38 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
aac7821
commit
Jan 16, 2020
fe634a8
c
Jan 16, 2020
ce101ea
c
Jan 16, 2020
029030c
lint
Jan 16, 2020
d643ac7
api docs + test
Jan 18, 2020
6321788
Merge branch 'master' into master
Feb 1, 2020
431f567
broken
pushkine Apr 28, 2020
654bcfd
working
pushkine Apr 28, 2020
a26a75e
saving progress...
pushkine Apr 30, 2020
0d9d3c5
06/05
pushkine May 6, 2020
a75fc80
motion complete
pushkine May 7, 2020
0ee27c4
bidi wip
pushkine May 8, 2020
c225731
bidi complete
pushkine May 9, 2020
eaf599f
10/05
pushkine May 10, 2020
7e33e11
fix env
pushkine May 12, 2020
a4b86fb
gitignore
pushkine May 12, 2020
82d17c5
15/05
pushkine May 15, 2020
87a05ec
remove v2 devtools
pushkine May 15, 2020
796c8c6
remove v2 devtools meta
pushkine May 15, 2020
ff6144a
tsc
pushkine May 15, 2020
e73b258
fix bugs + convert tests to typescript
pushkine May 17, 2020
48298db
update expected
pushkine May 17, 2020
b4a7c7e
remove expectations for raf.tick(0)
pushkine May 17, 2020
c67d585
remove css hashes from assertions
pushkine May 17, 2020
510ad4d
pass tests
pushkine May 18, 2020
28b160f
lint
pushkine May 18, 2020
0587fe4
remove class statics for treeshaking bs
pushkine May 18, 2020
9c02cc3
fix bezier + add string interpolation
pushkine May 19, 2020
5024513
fix quadInOut
pushkine May 19, 2020
291703d
gitignore wontwork
pushkine May 19, 2020
e9f0ffb
examples
pushkine May 19, 2020
78ccf73
inline tiny-glob
pushkine May 20, 2020
aec3ba8
rollback svelte/environment
pushkine May 20, 2020
af558a2
Merge remote-tracking branch 'upstream/master'
pushkine May 20, 2020
0b34a0c
Merge branch 'master' into crossfade-fix
pushkine May 20, 2020
ff027cd
resolve conflicts, update expected
pushkine May 20, 2020
4f95668
remove prettier
pushkine May 21, 2020
0f96eea
remove prettier
pushkine May 21, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ internal_exports.ts

# output files
animate/*.js
esing/*.js
easing/*.js
internal/*.js
interpolate/*.js
motion/*.js
store/*.js
transition/*.js
Expand Down
50 changes: 20 additions & 30 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module.exports = {
root: true,
rules: {
indent: 'off',
'indent': 'off',
'no-unused-vars': 'off',
semi: [2, 'always'],
'semi': [2, 'always'],
'keyword-spacing': [2, { before: true, after: true }],
'space-before-blocks': [2, 'always'],
'no-mixed-spaces-and-tabs': [2, 'smart-tabs'],
Expand All @@ -15,74 +15,64 @@ module.exports = {
'no-var': 2,
'no-unreachable': 2,
'valid-typeof': 2,
'quote-props': [2, 'as-needed'],
'one-var': [2, 'never'],
'quote-props': 'off',
'prefer-arrow-callback': 2,
'prefer-const': [2, { destructuring: 'all' }],
'arrow-spacing': 2,
'no-inner-declarations': 0,
'require-atomic-updates': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/indent': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/array-type': ['error', 'array-simple'],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_'
}
],
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/prefer-interface': 'off'
'@typescript-eslint/prefer-interface': 'off',
},
globals: {
globalThis: false
globalThis: false,
__VERSION__: true,
},
env: {
es6: true,
browser: true,
node: true,
mocha: true
mocha: true,
},
extends: [
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended'
'plugin:@typescript-eslint/recommended',
],
parserOptions: {
ecmaVersion: 9,
sourceType: 'module'
sourceType: 'module',
},
plugins: ['svelte3'],
settings: {
'import/core-modules': [
'svelte',
'svelte/internal',
'svelte/store',
'svelte/easing',
'estree'
],
'svelte3/compiler': require('./compiler')
'import/core-modules': ['svelte', 'svelte/internal', 'svelte/store', 'svelte/easing', 'estree'],
'svelte3/compiler': require('./compiler'),
},
overrides: [
{
files: ['*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off'
}
'@typescript-eslint/no-var-requires': 'off',
},
},
{
files: ['*.svelte'],
processor: 'svelte3/svelte3',
rules: {
'@typescript-eslint/indent': 'off'
}
}
]
'@typescript-eslint/indent': 'off',
},
},
],
};
32 changes: 21 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,40 @@
.DS_Store
.nyc_output
.vscode

node_modules
*.map

/src/compiler/compile/internal_exports.ts
/compiler.d.ts
/compiler.*js
/index.*js
/internal
/store

/animate
/easing
/internal
/interpolate
/motion
/store
/transition
/animate

/types

*.map
/compiler.d.ts
/compiler.*js

/index.*js

/scratch/
/coverage/
/coverage.lcov

/yarn-error.log
_actual*.*
_output

/test/*/samples/_
/test/sourcemaps/samples/*/output.js
/test/sourcemaps/samples/*/output.js.map
/test/sourcemaps/samples/*/output.css
/test/sourcemaps/samples/*/output.css.map
/yarn-error.log
_actual*.*
_output
/types

/site/cypress/screenshots/
/site/__sapper__/
Expand Down
1 change: 0 additions & 1 deletion mocha.opts

This file was deleted.

Loading