generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0191f66
commit 3211939
Showing
48 changed files
with
1,069 additions
and
1,426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'jsdom', | ||
roots: ['<rootDir>/src', '<rootDir>/tests'], | ||
preset: "ts-jest", | ||
testEnvironment: "jsdom", | ||
roots: ["<rootDir>/src", "<rootDir>/tests"], | ||
transform: { | ||
'^.+\\.(js|jsx|ts|tsx)$': 'ts-jest', | ||
"^.+\\.(js|jsx|ts|tsx)$": "ts-jest", | ||
}, | ||
moduleNameMapper: { | ||
'\\.(css|less|scss|sass)$': 'identity-obj-proxy', | ||
'^@/(.*)$': '<rootDir>/src/$1', | ||
'^obsidian$': '<rootDir>/__mocks__/obsidian.js' | ||
"\\.(css|less|scss|sass)$": "identity-obj-proxy", | ||
"^@/(.*)$": "<rootDir>/src/$1", | ||
"^obsidian$": "<rootDir>/__mocks__/obsidian.js", | ||
}, | ||
testRegex: '(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$', | ||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], | ||
testPathIgnorePatterns: ['/node_modules/'], | ||
setupFiles: ['<rootDir>/jest.setup.js'], | ||
}; | ||
testRegex: "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", | ||
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], | ||
testPathIgnorePatterns: ["/node_modules/"], | ||
setupFiles: ["<rootDir>/jest.setup.js"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
import 'web-streams-polyfill/dist/polyfill.min.js'; | ||
import "web-streams-polyfill/dist/polyfill.min.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"id": "copilot", | ||
"name": "Copilot", | ||
"version": "2.5.4", | ||
"minAppVersion": "0.15.0", | ||
"description": "A ChatGPT Copilot in Obsidian.", | ||
"author": "Logan Yang", | ||
"authorUrl": "https://twitter.com/logancyang", | ||
"fundingUrl": { | ||
"Buy Me a Coffee": "https://www.buymeacoffee.com/logancyang", | ||
"GitHub Sponsor": "https://github.com/sponsors/logancyang" | ||
}, | ||
"isDesktopOnly": true | ||
} | ||
"id": "copilot", | ||
"name": "Copilot", | ||
"version": "2.5.4", | ||
"minAppVersion": "0.15.0", | ||
"description": "A ChatGPT Copilot in Obsidian.", | ||
"author": "Logan Yang", | ||
"authorUrl": "https://twitter.com/logancyang", | ||
"fundingUrl": { | ||
"Buy Me a Coffee": "https://www.buymeacoffee.com/logancyang", | ||
"GitHub Sponsor": "https://github.com/sponsors/logancyang" | ||
}, | ||
"isDesktopOnly": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.