@lightsparkdev/core 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +6 -1
- package/.fossa.yml +0 -6
- package/.prettierrc +0 -1
- package/.turbo/turbo-build.log +0 -14
- package/.turbo/turbo-lint.log +0 -3
- package/tsconfig.json +0 -35
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightsparkdev/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Lightspark JS SDK",
|
|
5
5
|
"author": "Lightspark Inc.",
|
|
6
6
|
"keywords": [
|
|
@@ -28,6 +28,11 @@
|
|
|
28
28
|
"browser": {
|
|
29
29
|
"crypto": false
|
|
30
30
|
},
|
|
31
|
+
"files": [
|
|
32
|
+
"src/*",
|
|
33
|
+
"dist/*",
|
|
34
|
+
"CHANGELOG.md"
|
|
35
|
+
],
|
|
31
36
|
"scripts": {
|
|
32
37
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
33
38
|
"dev": "yarn build -- --watch",
|
package/.fossa.yml
DELETED
package/.prettierrc
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
package/.turbo/turbo-build.log
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
$ tsup src/index.ts --format cjs,esm --dts
|
|
2
|
-
CLI Building entry: src/index.ts
|
|
3
|
-
CLI Using tsconfig: tsconfig.json
|
|
4
|
-
CLI tsup v6.7.0
|
|
5
|
-
CLI Target: esnext
|
|
6
|
-
CJS Build start
|
|
7
|
-
ESM Build start
|
|
8
|
-
CJS dist/index.cjs 20.07 KB
|
|
9
|
-
CJS ⚡️ Build success in 50ms
|
|
10
|
-
ESM dist/index.js 17.39 KB
|
|
11
|
-
ESM ⚡️ Build success in 50ms
|
|
12
|
-
DTS Build start
|
|
13
|
-
DTS ⚡️ Build success in 667ms
|
|
14
|
-
DTS dist/index.d.ts 6.45 KB
|
package/.turbo/turbo-lint.log
DELETED
package/tsconfig.json
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ESNext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
|
|
4
|
-
"module": "ESNext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
|
|
5
|
-
"lib": [
|
|
6
|
-
"DOM",
|
|
7
|
-
"ESNext"
|
|
8
|
-
] /* Specify library files to be included in the compilation. */,
|
|
9
|
-
"allowJs": true,
|
|
10
|
-
"declaration": true /* Generates corresponding '.d.ts' file. */,
|
|
11
|
-
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
|
|
12
|
-
"sourceMap": true /* Generates corresponding '.map' file. */,
|
|
13
|
-
// "outFile": "./", /* Concatenate and emit output to single file. */
|
|
14
|
-
"outDir": "dist" /* Redirect output structure to the directory. */,
|
|
15
|
-
/* Strict Type-Checking Options */
|
|
16
|
-
"strict": true /* Enable all strict type-checking options. */,
|
|
17
|
-
"noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */,
|
|
18
|
-
"strictNullChecks": true /* Enable strict null checks. */,
|
|
19
|
-
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
|
|
20
|
-
/* Module Resolution Options */
|
|
21
|
-
"baseUrl": "./src" /* Base directory to resolve non-absolute module names. */,
|
|
22
|
-
"moduleResolution": "node16",
|
|
23
|
-
"types": [
|
|
24
|
-
"node"
|
|
25
|
-
] /* Type declaration files to be included in compilation. */,
|
|
26
|
-
"resolveJsonModule": true,
|
|
27
|
-
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
|
|
28
|
-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
|
|
29
|
-
/* Advanced Options */
|
|
30
|
-
"skipLibCheck": true /* Skip type checking of declaration files. */,
|
|
31
|
-
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
|
|
32
|
-
},
|
|
33
|
-
"include": ["src"],
|
|
34
|
-
"exclude": ["test", "node_modules", "dist"]
|
|
35
|
-
}
|