Updated to nearly fully functional. Pre-release 1. Still needs some UI changes in the slideshow and admin pages (move the save button & fix the save detection for the internship list). Customer had one more page change request which I need to re-define and handle.

This commit is contained in:
Wynne Crisman
2018-12-12 11:04:00 -08:00
parent c0e971774e
commit 3fc374eda3
108 changed files with 3472 additions and 628 deletions

View File

@@ -0,0 +1,17 @@
Package.describe({
name: "wcrisman:server-side-seo",
version: "1.0.0",
summary: "Copies all templates into an index file: /private/template-index for use at runtime to generate html for search engines to parse.",
documentation: "readme.md"
});
Package.registerBuildPlugin({
name: "wcrisman:server-side-seo-build",
sources: ["build.js"],
//npmDependencies: {'something-from-npm': '1.2.3'}
});
Package.onUse(function(api) {
//api.use('');
api.use('isobuild:linter-plugin@1.0.0');
});