Skip to content

Commit

Permalink
add first schema version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Sep 1, 2019
1 parent ddf0dd2 commit d0afc46
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/load-safe-blueprint-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ async function loadSafeBlueprintFile(cwd) {

if (!emberCliUpdateJson) {
emberCliUpdateJson = {
schemaVersion: '1',
blueprints: []
};
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-git-addon-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-git-addon-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-git-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-git-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-npm-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-npm-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-npm-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-npm-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-npm-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-git-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli-update-git-blueprint-test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"schemaVersion": "1",
"blueprints": [
{
"name": "ember-cli",
Expand Down
1 change: 1 addition & 0 deletions test/integration/load-safe-blueprint-file-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ describe(loadSafeBlueprintFile, function() {
let emberCliUpdateJson = await loadSafeBlueprintFile(dir);

expect(emberCliUpdateJson).to.deep.equal({
schemaVersion: '1',
blueprints: []
});
});
Expand Down

0 comments on commit d0afc46

Please sign in to comment.