-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Showing
13 changed files
with
473 additions
and
35 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import hljs from "../../build/es/index.js"; | ||
|
||
const API = [ | ||
"getLanguage", | ||
"registerLanguage", | ||
"highlight", | ||
"highlightAuto", | ||
"highlightAll", | ||
"highlightElement", | ||
]; | ||
|
||
const assert = (f, msg) => { | ||
if (!f()) { | ||
console.error(msg); | ||
process.exit(1); | ||
} | ||
}; | ||
const keys = Object.keys(hljs); | ||
|
||
API.forEach((n) => { | ||
assert((_) => keys.includes(n), `API should include ${n}`); | ||
}); | ||
|
||
console.log("Pass: browser build works with Node.js just fine."); |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// rollup.config.js | ||
import commonjs from "@rollup/plugin-commonjs"; | ||
|
||
export default { | ||
input: "test/builds/cdn_build_as_esm.mjs", | ||
output: { | ||
file: "build/bundle.js", | ||
format: "iife", | ||
}, | ||
plugins: [ | ||
commonjs({ | ||
include: "build/**", // Default: undefined | ||
exclude: ["node_modules/**"], // Default: undefined | ||
}), | ||
], | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// rollup.config.js | ||
import commonjs from "@rollup/plugin-commonjs"; | ||
|
||
export default { | ||
input: "test/builds/node_build_as_esm.mjs", | ||
output: { | ||
file: "build/bundle.js", | ||
format: "iife", | ||
}, | ||
plugins: [ | ||
commonjs({ | ||
include: "build/**", // Default: undefined | ||
exclude: ["node_modules/**"], // Default: undefined | ||
}), | ||
], | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<span class="hljs-comment">-- Basic Table with a Single Primary Key</span> | ||
<span class="hljs-keyword">CREATE TABLE</span> users ( | ||
id <span class="hljs-type">INT</span> <span class="hljs-keyword">PRIMARY KEY</span>, | ||
username <span class="hljs-type">VARCHAR</span>(<span class="hljs-number">50</span>), | ||
email <span class="hljs-type">VARCHAR</span>(<span class="hljs-number">100</span>) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Composite Primary Key</span> | ||
<span class="hljs-keyword">CREATE TABLE</span> orders ( | ||
order_id <span class="hljs-type">INT</span>, | ||
user_id <span class="hljs-type">INT</span>, | ||
<span class="hljs-keyword">PRIMARY KEY</span> (order_id, user_id) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Primary Key and Auto Increment</span> | ||
<span class="hljs-keyword">CREATE TABLE</span> products ( | ||
product_id <span class="hljs-type">INT</span> <span class="hljs-keyword">PRIMARY KEY</span> AUTO_INCREMENT, | ||
name <span class="hljs-type">VARCHAR</span>(<span class="hljs-number">100</span>), | ||
price <span class="hljs-type">DECIMAL</span>(<span class="hljs-number">10</span>, <span class="hljs-number">2</span>) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Primary Key and Foreign Key</span> | ||
<span class="hljs-keyword">CREATE TABLE</span> order_items ( | ||
item_id <span class="hljs-type">INT</span>, | ||
order_id <span class="hljs-type">INT</span>, | ||
product_id <span class="hljs-type">INT</span>, | ||
<span class="hljs-keyword">PRIMARY KEY</span> (item_id), | ||
<span class="hljs-keyword">FOREIGN KEY</span> (order_id) <span class="hljs-keyword">REFERENCES</span> orders(order_id) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Date and Primary Key</span> | ||
<span class="hljs-keyword">CREATE TABLE</span> events ( | ||
event_id <span class="hljs-type">INT</span> <span class="hljs-keyword">PRIMARY KEY</span>, | ||
event_name <span class="hljs-type">VARCHAR</span>(<span class="hljs-number">100</span>), | ||
event_date <span class="hljs-type">DATE</span> | ||
); | ||
|
||
<span class="hljs-comment">-- Basic Table with a Single Primary Key</span> | ||
<span class="hljs-keyword">CREATE | ||
TABLE</span> | ||
users | ||
( | ||
id | ||
<span class="hljs-type">INT</span> | ||
<span class="hljs-keyword">PRIMARY | ||
KEY</span>, | ||
username | ||
<span class="hljs-type">VARCHAR</span>(<span class="hljs-number">50</span>), | ||
<span class="hljs-type">VARCHAR</span>(<span class="hljs-number">100</span>) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Composite Primary Key</span> | ||
<span class="hljs-keyword">CREATE | ||
TABLE</span> | ||
orders | ||
( | ||
order_id | ||
<span class="hljs-type">INT</span>, | ||
user_id | ||
<span class="hljs-type">INT</span>, | ||
<span class="hljs-keyword">PRIMARY | ||
KEY</span> | ||
(order_id, | ||
user_id) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Primary Key and Auto Increment</span> | ||
<span class="hljs-keyword">CREATE | ||
TABLE</span> | ||
products | ||
( | ||
product_id | ||
<span class="hljs-type">INT</span> | ||
<span class="hljs-keyword">PRIMARY | ||
KEY</span> | ||
AUTO_INCREMENT, | ||
name | ||
<span class="hljs-type">VARCHAR</span>(<span class="hljs-number">100</span>), | ||
price | ||
<span class="hljs-type">DECIMAL</span>(<span class="hljs-number">10</span>, <span class="hljs-number">2</span>) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Primary Key and Foreign Key</span> | ||
<span class="hljs-keyword">CREATE | ||
TABLE</span> | ||
order_items | ||
( | ||
item_id | ||
<span class="hljs-type">INT</span>, | ||
order_id | ||
<span class="hljs-type">INT</span>, | ||
product_id | ||
<span class="hljs-type">INT</span>, | ||
<span class="hljs-keyword">PRIMARY | ||
KEY</span> | ||
(item_id), | ||
<span class="hljs-keyword">FOREIGN | ||
KEY</span> | ||
(order_id) | ||
<span class="hljs-keyword">REFERENCES</span> | ||
orders(order_id) | ||
); | ||
|
||
<span class="hljs-comment">-- Table with Date and Primary Key</span> | ||
<span class="hljs-keyword">CREATE | ||
TABLE</span> | ||
events | ||
( | ||
event_id | ||
<span class="hljs-type">INT</span> | ||
<span class="hljs-keyword">PRIMARY | ||
KEY</span>, | ||
event_name | ||
<span class="hljs-type">VARCHAR</span>(<span class="hljs-number">100</span>), | ||
event_date | ||
<span class="hljs-type">DATE</span> <span class="hljs-type">with timezone</span> | ||
); |
Oops, something went wrong.