@hdnax/sqlingo.js 0.0.4 → 0.0.5

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,11 @@
1
1
  # @hdnax/sqlingo.js
2
2
 
3
+ ## 0.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - dc5780a: Update copywriting
8
+
3
9
  ## 0.0.4
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -32,6 +32,14 @@ pnpm add @hdnax/sqlingo.js
32
32
  yarn add @hdnax/sqlingo.js
33
33
  ```
34
34
 
35
+ or CDN:
36
+
37
+ ```html
38
+ <script type="module">
39
+ import { transpile } from "https://esm.sh/@hdnax/sqlingo.js";
40
+ </script>
41
+ ```
42
+
35
43
  Peer dependency: [`luxon`](https://www.npmjs.com/package/luxon) (^3.7.2) is required for date/time operations.
36
44
 
37
45
  ## Usage
@@ -128,17 +136,3 @@ This package tracks [SQLGlot](https://github.com/tobymao/sqlglot) v28.10.0 (comm
128
136
  MIT. See [LICENSE](https://github.com/huydo862003/sqlingo.js/blob/master/LICENSE).
129
137
 
130
138
  Based on [SQLGlot](https://github.com/tobymao/sqlglot) by Toby Mao (MIT). See [COPYRIGHT_NOTICE](https://github.com/huydo862003/sqlingo.js/blob/master/COPYRIGHT_NOTICE).
131
-
132
- ## Copyright Notice
133
-
134
- Check [License](./LICENSE).
135
-
136
- ## CDN Usage
137
-
138
- Use sqlingo.js directly in the browser via CDN:
139
-
140
- ```html
141
- <script type="module">
142
- import { transpile } from "https://esm.sh/@hdnax/sqlingo.js";
143
- </script>
144
- ```
package/README.npm.md CHANGED
@@ -32,6 +32,14 @@ pnpm add @hdnax/sqlingo.js
32
32
  yarn add @hdnax/sqlingo.js
33
33
  ```
34
34
 
35
+ or CDN:
36
+
37
+ ```html
38
+ <script type="module">
39
+ import { transpile } from "https://esm.sh/@hdnax/sqlingo.js";
40
+ </script>
41
+ ```
42
+
35
43
  Peer dependency: [`luxon`](https://www.npmjs.com/package/luxon) (^3.7.2) is required for date/time operations.
36
44
 
37
45
  ## Usage
@@ -128,17 +136,3 @@ This package tracks [SQLGlot](https://github.com/tobymao/sqlglot) v28.10.0 (comm
128
136
  MIT. See [LICENSE](https://github.com/huydo862003/sqlingo.js/blob/master/LICENSE).
129
137
 
130
138
  Based on [SQLGlot](https://github.com/tobymao/sqlglot) by Toby Mao (MIT). See [COPYRIGHT_NOTICE](https://github.com/huydo862003/sqlingo.js/blob/master/COPYRIGHT_NOTICE).
131
-
132
- ## Copyright Notice
133
-
134
- Check [License](./LICENSE).
135
-
136
- ## CDN Usage
137
-
138
- Use sqlingo.js directly in the browser via CDN:
139
-
140
- ```html
141
- <script type="module">
142
- import { transpile } from "https://esm.sh/@hdnax/sqlingo.js";
143
- </script>
144
- ```
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "version": "28.10.0",
7
7
  "url": "https://github.com/tobymao/sqlglot"
8
8
  },
9
- "version": "0.0.4",
9
+ "version": "0.0.5",
10
10
  "type": "module",
11
11
  "description": "SQL parser, transpiler, optimizer, and engine for JavaScript/TypeScript - 33+ dialects (Postgres, MySQL, BigQuery, Snowflake, DuckDB, etc). Port of Python SQLGlot.",
12
12
  "main": "dist/index.cjs",