init
This commit is contained in:
commit
5ce5e18947
|
@ -0,0 +1,6 @@
|
|||
# External Dependencies
|
||||
node_modules
|
||||
# Distributed built files
|
||||
dist
|
||||
# Temporary files
|
||||
.cache
|
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title></title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
</head>
|
||||
<body>
|
||||
<script src="./src/index.ts"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"name": "nls-parcel-dailyshit",
|
||||
"version": "1.0.0-0",
|
||||
"description": "",
|
||||
"main": "index.html",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "parcel index.html --open",
|
||||
"build": "parcel build index.html"
|
||||
},
|
||||
"author": "Michael Werner Czechowski <mail@dailysh.it>",
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"parcel-bundler": "^1.10.3",
|
||||
"sass": "^1.15.2",
|
||||
"typescript": "^3.2.1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
import main from './main';
|
||||
|
||||
main();
|
|
@ -0,0 +1,3 @@
|
|||
.main {
|
||||
color: red;
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
import * as classes from './main.scss';
|
||||
|
||||
export default () => {
|
||||
console.log(classes);
|
||||
};
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue