Add flow items

This commit is contained in:
2024-02-23 17:04:36 -08:00
parent efad3b0e53
commit 338ad6f7a0
11 changed files with 6916 additions and 0 deletions

1
.env Normal file
View File

@ -0,0 +1 @@
.env

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

6852
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

29
package.json Normal file
View File

@ -0,0 +1,29 @@
{
"name": "lsm-gulp",
"version": "1.0.0",
"description": "See gulpfile.js.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp",
"start": "gulp watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/stream": "^1.1.0",
"browser-sync": "^3.0.2",
"del": "^7.1.0",
"dotenv": "^16.4.4",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-if": "^3.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"sass-embedded": "^1.70.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"type": "module"
}

2
public/app.js Normal file
View File

@ -0,0 +1,2 @@
'use strict';

15
public/index.html Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<title>My App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- SCRIPTS -->
<script src="./app.js"></script>
</body>

0
public/styles.css Normal file
View File

15
src/index.html Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<title>My App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- SCRIPTS -->
<script src="./app.js"></script>
</body>

1
src/index.js Normal file
View File

@ -0,0 +1 @@
import './js/script';

0
src/js/script.js Normal file
View File

0
src/style/main.scss Normal file
View File