Skip to content
Merged
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
28fe8d7
move bundling infra to webpack. fix files for radix chart
afucher Apr 17, 2022
790494f
refactor file to enable transit and animation
afucher Apr 17, 2022
136e6c9
fix calibrate chart
afucher Apr 17, 2022
16f97c0
fix svg file
afucher Apr 18, 2022
d404458
add typescript
afucher Apr 21, 2022
3a1e443
point examples to dist folder
afucher Apr 21, 2022
2a04f1a
create custom types
afucher Apr 22, 2022
4b1dac0
add Jest. migrate utils test
afucher Apr 23, 2022
51ac642
migrate core test to jest
afucher Apr 23, 2022
9816b4d
migrate zodiac test to jest
afucher Apr 23, 2022
c6f9c30
ignore coverage folder
afucher Apr 23, 2022
dead01e
migrate svg test to jest
afucher Apr 23, 2022
88c9fc2
remove only from tests
afucher Apr 23, 2022
8fe3186
migrate aspect test to jest
afucher Apr 23, 2022
cc6df7f
add tslint
afucher Apr 24, 2022
97b8456
add org to package json. bump to version alpha.1
afucher Apr 24, 2022
417b7e7
remove folder assets
afucher Apr 24, 2022
e0c3ef6
exclude test files from type generation
afucher Apr 24, 2022
ac3068c
bump alpha version
afucher Apr 24, 2022
d4d13e2
make settings partial in chart constructor
afucher May 1, 2022
50462a3
apply fix from main branch #25
afucher Feb 5, 2023
8695ccc
apply fix from main branch #26
afucher Feb 5, 2023
fa8153e
remove grunt. bump version
afucher Feb 5, 2023
bb739da
rc1 test publish to npm
afucher Feb 13, 2023
dbbac2e
add workflow to v3 branch
afucher Feb 13, 2023
e6f178a
changes to workflow
afucher Feb 13, 2023
31011a8
fix github worflow folder
afucher Feb 13, 2023
72b520f
another try
afucher Feb 13, 2023
6f412ed
Revert "apply fix from main branch #25"
afucher Feb 21, 2023
7c0c741
rc2
afucher Feb 21, 2023
20ae98e
remove test files from ts-config
afucher Feb 22, 2023
b54f3a2
exclude output dir in tsconfig
afucher Feb 22, 2023
e947ab4
added eslint. fixed most of lint errors
afucher Feb 22, 2023
e24e960
fix more lint errors
afucher Feb 22, 2023
e99b346
update lint (#43)
afucher Jun 11, 2023
95c7236
change type import to work with old ts versions
afucher Jun 12, 2023
2d9e4aa
generate types
afucher Jun 12, 2023
6edb6fb
export AspectCalculator. fix named exports
afucher Jun 18, 2023
db84ffb
bump rc5
afucher Jun 18, 2023
dc6f02b
replicate fix for #42 to v3
afucher Jun 22, 2023
f49acd2
merge main
afucher Jul 4, 2023
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
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
*.test.ts
67 changes: 67 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
module.exports = {
'env': {
'browser': true,
'commonjs': true,
'es6': true
},
'extends': [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended'
],
'globals': {
'Atomics': 'readonly',
'SharedArrayBuffer': 'readonly'
},
'parser': '@typescript-eslint/parser',
'parserOptions': {
'sourceType': 'module',
'ecmaVersion': 2018
},
'plugins': [
'@typescript-eslint'
],
'rules': {
'indent': [
'error',
2,
{ 'SwitchCase': 1 }
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single',
{ 'allowTemplateLiterals': true }
],
'semi': [
'error',
'never'
],
'no-var': ['error'],
'@typescript-eslint/member-delimiter-style': [
'error',
{
'multiline': {
'delimiter': 'none',
'requireLast': true
},
'singleline': {
'delimiter': 'semi',
'requireLast': false
}
}
],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { 'vars': 'all', 'args': 'after-used', 'ignoreRestSiblings': false }],
'no-unused-vars': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
//'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'no-prototype-builtins': 'off'
},
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
.project
.DS_Store
build/
coverage/


Binary file removed assets/1973515_orig.jpg
Binary file not shown.
60 changes: 0 additions & 60 deletions assets/Aquarius.svg

This file was deleted.

59 changes: 0 additions & 59 deletions assets/Aries.svg

This file was deleted.

Loading