chore: optimize workflows to avoid building components each time

This commit is contained in:
Mo
2022-06-14 16:00:31 -05:00
parent 703994c16b
commit 01793365bd
400 changed files with 17000 additions and 1544 deletions

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<base target="_blank">
<meta charset="UTF-8">
<script src="dist/dist.js"></script>
<script src="dist/sn-codemirror-search/search.js"></script>
<script src="dist/sn-codemirror-search/searchcursor.js"></script>
<script src="dist/sn-codemirror-search/dialog/dialog.js"></script>
<link rel="stylesheet" media="all" href="dist/dist.css">
<link rel="stylesheet" media="all" href="dist/sn-codemirror-search/dialog/dialog.css">
</head>
<body>
<div id="wrapper">
<textarea id="code" name="code"></textarea>
<div>
</body>
</html>

View File

@@ -0,0 +1,29 @@
{
"name": "@standardnotes/markdown-minimal",
"private": true,
"version": "1.3.9",
"description": "A minimal Markdown editor for Standard Notes.",
"main": "dist/dist.js",
"author": "Standard Notes <hello@standardnotes.org>",
"scripts": {
"compile": "grunt"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@standardnotes/component-relay": "2.2.0",
"babel-cli": "^6.26.0",
"codemirror": "^5.56.0",
"grunt": "^1.2.1",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"sass": "*",
"sn-codemirror-search": "1.0.0",
"sn-stylekit": "2.1.0"
}
}