@lightsparkdev/core 0.1.6 → 0.2.0

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @lightsparkdev/core
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Update the schema to include new wallet balances, etc.
8
+
9
+ ## 0.1.7
10
+
11
+ ### Patch Changes
12
+
13
+ - Cleaning up the files included in published packages
14
+
3
15
  ## 0.1.6
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightsparkdev/core",
3
- "version": "0.1.6",
3
+ "version": "0.2.0",
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
@@ -1,6 +0,0 @@
1
- version: 3
2
-
3
- project:
4
- id: lightspark/js-core-sdk
5
- name: js-core-sdk
6
- url: https://github.com/lightsparkdev/js-sdk
package/.prettierrc DELETED
@@ -1 +0,0 @@
1
- {}
@@ -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
@@ -1,3 +0,0 @@
1
- $ npx prettier --check ./src
2
- Checking formatting...
3
- All matched files use Prettier code style!
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
- }