Skip to content

Commit baf17bb

Browse files
authored
Merge pull request #418 from jmaister/typescript-2
WIP: Convert project to TypeScript
2 parents 3864a4e + 4b6cb2d commit baf17bb

21 files changed

+9107
-15802
lines changed

.babelrc

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"presets": ["es2015"],
3-
"env": {
4-
"test": {
5-
"plugins": ["istanbul"]
6-
}
7-
}
2+
"presets": [
3+
"@babel/preset-env" ],
4+
"plugins": [
5+
"@babel/plugin-proposal-class-properties",
6+
"@babel/plugin-transform-flow-strip-types"
7+
]
88
}

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
language: node_js
22
node_js:
3-
- "10"
3+
- "14"
44
env:
55
- MOZ_HEADLESS=1
66
addons:
77
firefox: latest
8+
cache:
9+
yarn: true

dist/excellentexport.d.ts

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/**
2+
* ExcellentExport 3.5.0
3+
* A client side Javascript export to Excel.
4+
*
5+
* @author: Jordi Burgos (jordiburgos@gmail.com)
6+
* @url: https://github.com/jmaister/excellentexport
7+
*
8+
*/
9+
export interface ConvertOptions {
10+
anchor: (string | HTMLAnchorElement);
11+
format: ('csv' | 'xls' | 'xlsx');
12+
filename?: string;
13+
}
14+
export interface FromOptions {
15+
table?: (string | HTMLTableElement);
16+
array?: any[][];
17+
}
18+
export interface SheetOptions {
19+
name: string;
20+
from: FromOptions;
21+
removeColumns?: number[];
22+
filterRowFn?(row: any[]): boolean;
23+
fixValue?(value: any, row: number, column: number): any;
24+
fixArray?(array: any[][]): any[][];
25+
}
26+
declare const ExcellentExport: {
27+
version: () => string;
28+
excel: (anchor: (HTMLAnchorElement | string), table: HTMLTableElement, name: string) => boolean;
29+
csv: (anchor: (HTMLAnchorElement | string), table: HTMLTableElement, delimiter?: string, newLine?: string) => boolean;
30+
convert: (options: ConvertOptions, sheets: SheetOptions[]) => string | false;
31+
};
32+
export default ExcellentExport;

dist/excellentexport.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jest.config.ts

+203
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
/*
2+
* For a detailed explanation regarding each configuration property and type check, visit:
3+
* https://jestjs.io/docs/en/configuration.html
4+
*/
5+
6+
export default {
7+
// All imported modules in your tests should be mocked automatically
8+
// automock: false,
9+
10+
// Stop running tests after `n` failures
11+
// bail: 0,
12+
13+
// The directory where Jest should store its cached dependency information
14+
// cacheDirectory: "/tmp/jest_rs",
15+
16+
// Automatically clear mock calls and instances between every test
17+
// clearMocks: false,
18+
19+
// Indicates whether the coverage information should be collected while executing the test
20+
// collectCoverage: false,
21+
22+
// An array of glob patterns indicating a set of files for which coverage information should be collected
23+
// collectCoverageFrom: undefined,
24+
25+
// The directory where Jest should output its coverage files
26+
coverageDirectory: "coverage",
27+
28+
// An array of regexp pattern strings used to skip coverage collection
29+
// coveragePathIgnorePatterns: [
30+
// "/node_modules/"
31+
// ],
32+
33+
// Indicates which provider should be used to instrument code for coverage
34+
coverageProvider: "v8",
35+
36+
// A list of reporter names that Jest uses when writing coverage reports
37+
// coverageReporters: [
38+
// "json",
39+
// "text",
40+
// "lcov",
41+
// "clover"
42+
// ],
43+
44+
// An object that configures minimum threshold enforcement for coverage results
45+
// coverageThreshold: undefined,
46+
47+
// A path to a custom dependency extractor
48+
// dependencyExtractor: undefined,
49+
50+
// Make calling deprecated APIs throw helpful error messages
51+
// errorOnDeprecated: false,
52+
53+
// Force coverage collection from ignored files using an array of glob patterns
54+
// forceCoverageMatch: [],
55+
56+
// A path to a module which exports an async function that is triggered once before all test suites
57+
// globalSetup: undefined,
58+
59+
// A path to a module which exports an async function that is triggered once after all test suites
60+
// globalTeardown: undefined,
61+
62+
// A set of global variables that need to be available in all test environments
63+
// globals: {},
64+
65+
// The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
66+
// maxWorkers: "50%",
67+
68+
// An array of directory names to be searched recursively up from the requiring module's location
69+
// moduleDirectories: [
70+
// "node_modules"
71+
// ],
72+
73+
// An array of file extensions your modules use
74+
// moduleFileExtensions: [
75+
// "js",
76+
// "json",
77+
// "jsx",
78+
// "ts",
79+
// "tsx",
80+
// "node"
81+
// ],
82+
83+
// A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
84+
// moduleNameMapper: {},
85+
86+
// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
87+
// modulePathIgnorePatterns: [],
88+
89+
// Activates notifications for test results
90+
// notify: false,
91+
92+
// An enum that specifies notification mode. Requires { notify: true }
93+
// notifyMode: "failure-change",
94+
95+
// A preset that is used as a base for Jest's configuration
96+
// preset: undefined,
97+
preset: 'jest-puppeteer',
98+
99+
// Run tests from one or more projects
100+
// projects: undefined,
101+
102+
// Use this configuration option to add custom reporters to Jest
103+
// reporters: undefined,
104+
105+
// Automatically reset mock state between every test
106+
// resetMocks: false,
107+
108+
// Reset the module registry before running each individual test
109+
// resetModules: false,
110+
111+
// A path to a custom resolver
112+
// resolver: undefined,
113+
114+
// Automatically restore mock state between every test
115+
// restoreMocks: false,
116+
117+
// The root directory that Jest should scan for tests and modules within
118+
// rootDir: undefined,
119+
120+
// A list of paths to directories that Jest should use to search for files in
121+
// roots: [
122+
// "<rootDir>"
123+
// ],
124+
roots: [
125+
"src",
126+
"test"
127+
],
128+
129+
// Allows you to use a custom runner instead of Jest's default test runner
130+
// runner: "jest-runner",
131+
132+
// The paths to modules that run some code to configure or set up the testing environment before each test
133+
// setupFiles: [],
134+
135+
// A list of paths to modules that run some code to configure or set up the testing framework before each test
136+
// setupFilesAfterEnv: [],
137+
138+
// The number of seconds after which a test is considered as slow and reported as such in the results.
139+
// slowTestThreshold: 5,
140+
141+
// A list of paths to snapshot serializer modules Jest should use for snapshot testing
142+
// snapshotSerializers: [],
143+
144+
// The test environment that will be used for testing
145+
// testEnvironment: "jest-environment-jsdom",
146+
testEnvironment: "jsdom",
147+
148+
// Options that will be passed to the testEnvironment
149+
// testEnvironmentOptions: {},
150+
151+
// Adds a location field to test results
152+
// testLocationInResults: false,
153+
154+
// The glob patterns Jest uses to detect test files
155+
// testMatch: [
156+
// "**/__tests__/**/*.[jt]s?(x)",
157+
// "**/?(*.)+(spec|test).[tj]s?(x)"
158+
// ],
159+
160+
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
161+
// testPathIgnorePatterns: [
162+
// "/node_modules/"
163+
// ],
164+
165+
// The regexp pattern or array of patterns that Jest uses to detect test files
166+
// testRegex: [],
167+
168+
// This option allows the use of a custom results processor
169+
// testResultsProcessor: undefined,
170+
171+
// This option allows use of a custom test runner
172+
// testRunner: "jasmine2",
173+
174+
// This option sets the URL for the jsdom environment. It is reflected in properties such as location.href
175+
// testURL: "http://localhost",
176+
177+
// Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout"
178+
// timers: "real",
179+
180+
// A map from regular expressions to paths to transformers
181+
// transform: undefined,
182+
transform: {
183+
"^.+\\.ts?$": "ts-jest"
184+
},
185+
186+
// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
187+
// transformIgnorePatterns: [
188+
// "/node_modules/",
189+
// "\\.pnp\\.[^\\/]+$"
190+
// ],
191+
192+
// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
193+
// unmockedModulePathPatterns: undefined,
194+
195+
// Indicates whether each individual test should be reported during the run
196+
// verbose: undefined,
197+
198+
// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
199+
// watchPathIgnorePatterns: [],
200+
201+
// Whether to use watchman for file crawling
202+
// watchman: true,
203+
};

karma.conf.js

-70
This file was deleted.

0 commit comments

Comments
 (0)