Skip to content

Commit

Permalink
fix: use correct json schema for init
Browse files Browse the repository at this point in the history
  • Loading branch information
kyubisation committed Nov 23, 2020
1 parent 38c328a commit 69ea706
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { PatternPersistenceStrategy } from './pattern-persistence-strategy';
export function init(name: string = 't9n.conf.json') {
name = name.endsWith('.json') ? name : `${name}.json`;
const options: Options & { $schema: string } = {
$schema: 'https://github.com/kyubisation/angular-t9n/blob/master/tslint.json',
$schema: 'https://raw.githubusercontent.com/kyubisation/angular-t9n/master/t9n.schema.json',
translationFile: 'messages.xlf',
targetTranslationPath: '',
includeContextInTarget: false,
Expand Down
2 changes: 1 addition & 1 deletion t9n-xlf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://github.com/kyubisation/angular-t9n/blob/master/tslint.json",
"$schema": "https://raw.githubusercontent.com/kyubisation/angular-t9n/master/t9n.schema.json",
"translationFile": "src/locale/xlf/messages.xlf",
"targetTranslationPath": "",
"includeContextInTarget": true,
Expand Down
2 changes: 1 addition & 1 deletion t9n-xlf2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://github.com/kyubisation/angular-t9n/blob/master/tslint.json",
"$schema": "https://raw.githubusercontent.com/kyubisation/angular-t9n/master/t9n.schema.json",
"translationFile": "src/locale/xlf2/messages.xlf",
"targetTranslationPath": "",
"includeContextInTarget": true,
Expand Down

0 comments on commit 69ea706

Please sign in to comment.