From: Geoff Kimball Date: Tue, 12 Jan 2016 19:59:02 +0000 (-0800) Subject: Replace Git submodule for testing template with an actual folder X-Git-Tag: v2.0.0-rc.1~46^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1a7284a238731a19f594ebfb9a699db75eab70;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Replace Git submodule for testing template with an actual folder --- diff --git a/.gitignore b/.gitignore index e3402bd3..7fab6096 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ node_modules/ npm-debug.log temp/ dist/ -_build/ \ No newline at end of file +_build/ +inky diff --git a/README.md b/README.md index a0d8e5d6..1932f437 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ The Sass is compiled using libsass, which requires the GCC to be installed on yo To get going with Foundation for Emails you'll need run the following commands in your projects directory: ``` -git clone --recursive https://github.com/zurb/foundation-emails.git +git clone https://github.com/zurb/foundation-emails.git cd foundation-emails -npm install +./setup.sh ``` Note: this is the repo for the private release of the framework, we'll eventually be releasing a template repo to the public! @@ -36,13 +36,13 @@ Foundation for Emails utilizes [Panini](https://github.com/zurb/panini), our sup foundation-emails/ ├── _build/ │ └── ... -├── foundation-emails-template/ +├── testing/ │ └── layouts │ └── ... │ └── pages │ └── ... ``` -You'll be working within the `foundation-emails-template/layouts/` and `foundation-emails-template/pages/` to write your HTML emails. The `dist/` directory will have all of your outputted emails. +You'll be working within the `testing/layouts/` and `testing/pages/` to write your HTML emails. The `dist/` directory will have all of your outputted emails. ## Commands You'll have two commands that will give you all the tools you need for F4E. diff --git a/foundation-emails-template b/foundation-emails-template deleted file mode 160000 index 98c51736..00000000 --- a/foundation-emails-template +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 98c51736b5162081395a53c1311f633a3cdf3f2b diff --git a/package.json b/package.json index 7ac91e67..56e55673 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "description": "A framework for responsive emails made by ZURB", "scripts": { "start": "gulp", - "test": "cd foundation-emails-template && npm start", - "production": "cd foundation-emails-template && npm run build", - "postinstall": "cd foundation-emails-template && npm i" + "test": "cd testing && npm start", + "production": "cd testing && npm run build", + "postinstall": "cd testing && npm i" }, "devDependencies": { "browser-sync": "^2.9.10", @@ -18,7 +18,6 @@ "gulp-htmlmin": "^1.1.1", "gulp-if": "^2.0.0", "gulp-inject": "^1.2.0", - "gulp-inky": "git://github.com/zurb/gulp-inky.git", "gulp-inline-css": "^2.0.0", "gulp-load-plugins": "^1.0.0-rc.1", "gulp-ruby-sass": "^1.0.5", diff --git a/setup.sh b/setup.sh new file mode 100755 index 00000000..1de07b66 --- /dev/null +++ b/setup.sh @@ -0,0 +1,4 @@ +npm install +git clone https://github.com/zurb/inky +cd testing +npm link ../inky diff --git a/testing b/testing new file mode 160000 index 00000000..56a5d184 --- /dev/null +++ b/testing @@ -0,0 +1 @@ +Subproject commit 56a5d18485653308c87f42760c59f3dd3d6a7cb7