Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
feat: add support for data glob patterns
Browse files Browse the repository at this point in the history
Closes #45
  • Loading branch information
justinlettau committed Oct 6, 2018
1 parent 81029fc commit 15cda32
Show file tree
Hide file tree
Showing 8 changed files with 774 additions and 673 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Configuration options are stored in a `ssc.json` file. The following properties

**files** (`string[]`): Optional. Glob of files to include/exclude during the `pull` command. Default includes all files.

**data** (`string[]`): Optional. List of table names to include for data scripting during the `pull` command. Default
**data** (`string[]`): Optional. Glob of table names to include for data scripting during the `pull` command. Default
includes none.

**output** (`object`): Optional. Defines paths where files will be scripted during the `pull` command. The following
Expand Down Expand Up @@ -217,11 +217,19 @@ Exclude certain files.
```

### Data
Include data scripting for certain tables.
Only include certain tales.
```js
{
// ...
"data": ["dbo.LookupTable"]
"data": ["dbo.*"]
}
```

Exclude certain tables.
```js
{
// ...
"data": ["*", "!dbo.*"]
}
```

Expand Down
Loading

0 comments on commit 15cda32

Please sign in to comment.