Skip to content

Commit

Permalink
feat: working timer implementation with events
Browse files Browse the repository at this point in the history
  • Loading branch information
doggodoge committed Oct 17, 2022
1 parent 4af2a49 commit 9bf721c
Show file tree
Hide file tree
Showing 18 changed files with 768 additions and 56 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[*]
end_of_line = lf
insert_final_newline = true

[*.{js,ts,jsx,tsx,svelte}]
indent_style = space
indent_size = 2

[package.json]
indent_style = space
indent_size = 2
2 changes: 1 addition & 1 deletion jest.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
coverageDirectory: 'coverage',
coverageProvider: 'v8',
testEnvironment: 'jsdom',
moduleFileExtensions: ['js', 'svelte'],
moduleFileExtensions: ['js', 'ts', 'svelte'],
transform: {
'^.+\\.(t|j)sx?$': ['@swc/jest'],
'^.+\\.svelte$': 'svelte-jester',
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.5.0",
"@swc/core": "^1.3.4",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.1",
"@tsconfig/svelte": "^3.0.0",
"@types/jest": "^29.1.2",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"npm-run-all": "^4.1.5",
Expand All @@ -35,7 +38,11 @@
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"svelte-check": "^2.9.1",
"svelte-jester": "^2.3.2",
"tar": "^6.1.11"
"svelte-preprocess": "^4.10.7",
"tar": "^6.1.11",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}
Loading

0 comments on commit 9bf721c

Please sign in to comment.