This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Combine all Slate repos into a single repo
- Loading branch information
Thomas Kelly
committed
Aug 11, 2017
1 parent
d10452e
commit 706dce4
Showing
147 changed files
with
12,330 additions
and
8,121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
src/scripts/vendor/ | ||
src/scripts/**/*.js.liquid | ||
packages/slate-theme/src/scripts/vendor/ | ||
|
||
packages/slate-theme/src/scripts/**/*.js.liquid | ||
package/slate-cli/lib | ||
package/slate-tools/ | ||
node_modules/ | ||
docs/ | ||
ci/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": [ | ||
"plugin:shopify/esnext", | ||
"plugin:shopify/node" | ||
], | ||
"rules": { | ||
"no-console": 0, | ||
"node/shebang": 0 | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
machine: | ||
ruby: | ||
version: 2.3.1 | ||
node: | ||
version: 6.2.2 | ||
|
||
dependencies: | ||
pre: | ||
- 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc' | ||
- npm set progress=false | ||
- npm install -g @shopify/slate | ||
bundler: | ||
without: | ||
- benchmark | ||
- deploy | ||
- production | ||
- debug | ||
cache_directories: | ||
- .bundle/ | ||
- packages/slate-tools/node_modules | ||
- packages/slate-theme/node_modules | ||
- packages/slate-cli/node_modules | ||
override: | ||
- npm run bootstrap | ||
|
||
deployment: | ||
release: | ||
tag: /v[0-9]+(\.[0-9]+)*/ | ||
owner: Shopify | ||
commands: | ||
- npm run bootstrap | ||
- cd packages/slate-theme && ./node_modules/.bin/slate zip | ||
- node scripts/build | ||
- node scripts/deploy | ||
- curl -X PURGE https://sdks.shopifycdn.com/slate/latest/slate-theme.zip | ||
- curl -X PURGE https://sdks.shopifycdn.com/slate/latest/slate-src.zip | ||
|
||
test: | ||
pre: | ||
- slate build | ||
post: | ||
- slate test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"lerna": "2.0.0", | ||
"version": "0.11.0", | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"changelog": { | ||
"repo": "shopify/slate", | ||
"labels": { | ||
"enhancement": ":rocket: Enhancement", | ||
"bug": ":bug: Bug Fix", | ||
"documentation": ":memo: Documentation", | ||
"internal": ":house: Internal" | ||
}, | ||
"cacheDir": ".changelog" | ||
} | ||
} |
Oops, something went wrong.