diff --git a/package.json b/package.json index 029ce51c73..f344126761 100644 --- a/package.json +++ b/package.json @@ -4,16 +4,16 @@ "description": "Generate .docx documents with JavaScript (formerly Office-Clippy)", "main": "build/index.js", "scripts": { - "pretest": "rimraf ./build-tests && tsc -p ts/test-tsconfig.json", + "pretest": "rimraf ./build-tests && tsc -p src/test-tsconfig.json", "test": "mocha ./build-tests --recursive", "prepublishOnly": "npm run build", - "lint": "tslint --project ./ts", - "build": "rimraf ./build && tsc -p ts", + "lint": "tslint --project ./src", + "build": "rimraf ./build && tsc -p src", "demo": "npm run build && node ./demo", - "typedoc": "typedoc --out docs/ ts/ --module commonjs --target ES6 --disableOutputCheck" + "typedoc": "typedoc --out docs/ src/ --module commonjs --target ES6 --disableOutputCheck" }, "files": [ - "ts", + "src", "build", "template" ], diff --git a/ts/docx/document/body/body.spec.ts b/src/docx/document/body/body.spec.ts similarity index 100% rename from ts/docx/document/body/body.spec.ts rename to src/docx/document/body/body.spec.ts diff --git a/ts/docx/document/body/body.ts b/src/docx/document/body/body.ts similarity index 100% rename from ts/docx/document/body/body.ts rename to src/docx/document/body/body.ts diff --git a/ts/docx/document/body/columns.ts b/src/docx/document/body/columns.ts similarity index 100% rename from ts/docx/document/body/columns.ts rename to src/docx/document/body/columns.ts diff --git a/ts/docx/document/body/doc-grid.ts b/src/docx/document/body/doc-grid.ts similarity index 100% rename from ts/docx/document/body/doc-grid.ts rename to src/docx/document/body/doc-grid.ts diff --git a/ts/docx/document/body/index.ts b/src/docx/document/body/index.ts similarity index 100% rename from ts/docx/document/body/index.ts rename to src/docx/document/body/index.ts diff --git a/ts/docx/document/body/page-margin.ts b/src/docx/document/body/page-margin.ts similarity index 100% rename from ts/docx/document/body/page-margin.ts rename to src/docx/document/body/page-margin.ts diff --git a/ts/docx/document/body/page-size.ts b/src/docx/document/body/page-size.ts similarity index 100% rename from ts/docx/document/body/page-size.ts rename to src/docx/document/body/page-size.ts diff --git a/ts/docx/document/body/section-properties.ts b/src/docx/document/body/section-properties.ts similarity index 100% rename from ts/docx/document/body/section-properties.ts rename to src/docx/document/body/section-properties.ts diff --git a/ts/docx/document/document-attributes.ts b/src/docx/document/document-attributes.ts similarity index 100% rename from ts/docx/document/document-attributes.ts rename to src/docx/document/document-attributes.ts diff --git a/ts/docx/document/document.spec.ts b/src/docx/document/document.spec.ts similarity index 100% rename from ts/docx/document/document.spec.ts rename to src/docx/document/document.spec.ts diff --git a/ts/docx/document/document.ts b/src/docx/document/document.ts similarity index 100% rename from ts/docx/document/document.ts rename to src/docx/document/document.ts diff --git a/ts/docx/document/index.ts b/src/docx/document/index.ts similarity index 100% rename from ts/docx/document/index.ts rename to src/docx/document/index.ts diff --git a/ts/docx/index.ts b/src/docx/index.ts similarity index 100% rename from ts/docx/index.ts rename to src/docx/index.ts diff --git a/ts/docx/paragraph/formatting/alignment.ts b/src/docx/paragraph/formatting/alignment.ts similarity index 100% rename from ts/docx/paragraph/formatting/alignment.ts rename to src/docx/paragraph/formatting/alignment.ts diff --git a/ts/docx/paragraph/formatting/border.spec.ts b/src/docx/paragraph/formatting/border.spec.ts similarity index 100% rename from ts/docx/paragraph/formatting/border.spec.ts rename to src/docx/paragraph/formatting/border.spec.ts diff --git a/ts/docx/paragraph/formatting/border.ts b/src/docx/paragraph/formatting/border.ts similarity index 100% rename from ts/docx/paragraph/formatting/border.ts rename to src/docx/paragraph/formatting/border.ts diff --git a/ts/docx/paragraph/formatting/indent.ts b/src/docx/paragraph/formatting/indent.ts similarity index 100% rename from ts/docx/paragraph/formatting/indent.ts rename to src/docx/paragraph/formatting/indent.ts diff --git a/ts/docx/paragraph/formatting/index.ts b/src/docx/paragraph/formatting/index.ts similarity index 100% rename from ts/docx/paragraph/formatting/index.ts rename to src/docx/paragraph/formatting/index.ts diff --git a/ts/docx/paragraph/formatting/keep.ts b/src/docx/paragraph/formatting/keep.ts similarity index 100% rename from ts/docx/paragraph/formatting/keep.ts rename to src/docx/paragraph/formatting/keep.ts diff --git a/ts/docx/paragraph/formatting/page-break.spec.ts b/src/docx/paragraph/formatting/page-break.spec.ts similarity index 100% rename from ts/docx/paragraph/formatting/page-break.spec.ts rename to src/docx/paragraph/formatting/page-break.spec.ts diff --git a/ts/docx/paragraph/formatting/page-break.ts b/src/docx/paragraph/formatting/page-break.ts similarity index 100% rename from ts/docx/paragraph/formatting/page-break.ts rename to src/docx/paragraph/formatting/page-break.ts diff --git a/ts/docx/paragraph/formatting/spacing.spec.ts b/src/docx/paragraph/formatting/spacing.spec.ts similarity index 100% rename from ts/docx/paragraph/formatting/spacing.spec.ts rename to src/docx/paragraph/formatting/spacing.spec.ts diff --git a/ts/docx/paragraph/formatting/spacing.ts b/src/docx/paragraph/formatting/spacing.ts similarity index 100% rename from ts/docx/paragraph/formatting/spacing.ts rename to src/docx/paragraph/formatting/spacing.ts diff --git a/ts/docx/paragraph/formatting/style.spec.ts b/src/docx/paragraph/formatting/style.spec.ts similarity index 100% rename from ts/docx/paragraph/formatting/style.spec.ts rename to src/docx/paragraph/formatting/style.spec.ts diff --git a/ts/docx/paragraph/formatting/style.ts b/src/docx/paragraph/formatting/style.ts similarity index 100% rename from ts/docx/paragraph/formatting/style.ts rename to src/docx/paragraph/formatting/style.ts diff --git a/ts/docx/paragraph/formatting/tab-stop.spec.ts b/src/docx/paragraph/formatting/tab-stop.spec.ts similarity index 100% rename from ts/docx/paragraph/formatting/tab-stop.spec.ts rename to src/docx/paragraph/formatting/tab-stop.spec.ts diff --git a/ts/docx/paragraph/formatting/tab-stop.ts b/src/docx/paragraph/formatting/tab-stop.ts similarity index 100% rename from ts/docx/paragraph/formatting/tab-stop.ts rename to src/docx/paragraph/formatting/tab-stop.ts diff --git a/ts/docx/paragraph/formatting/unordered-list.spec.ts b/src/docx/paragraph/formatting/unordered-list.spec.ts similarity index 100% rename from ts/docx/paragraph/formatting/unordered-list.spec.ts rename to src/docx/paragraph/formatting/unordered-list.spec.ts diff --git a/ts/docx/paragraph/formatting/unordered-list.ts b/src/docx/paragraph/formatting/unordered-list.ts similarity index 100% rename from ts/docx/paragraph/formatting/unordered-list.ts rename to src/docx/paragraph/formatting/unordered-list.ts diff --git a/ts/docx/paragraph/index.ts b/src/docx/paragraph/index.ts similarity index 100% rename from ts/docx/paragraph/index.ts rename to src/docx/paragraph/index.ts diff --git a/ts/docx/paragraph/paragraph.spec.ts b/src/docx/paragraph/paragraph.spec.ts similarity index 100% rename from ts/docx/paragraph/paragraph.spec.ts rename to src/docx/paragraph/paragraph.spec.ts diff --git a/ts/docx/paragraph/paragraph.ts b/src/docx/paragraph/paragraph.ts similarity index 100% rename from ts/docx/paragraph/paragraph.ts rename to src/docx/paragraph/paragraph.ts diff --git a/ts/docx/paragraph/properties.ts b/src/docx/paragraph/properties.ts similarity index 100% rename from ts/docx/paragraph/properties.ts rename to src/docx/paragraph/properties.ts diff --git a/ts/docx/run/break.spec.ts b/src/docx/run/break.spec.ts similarity index 100% rename from ts/docx/run/break.spec.ts rename to src/docx/run/break.spec.ts diff --git a/ts/docx/run/break.ts b/src/docx/run/break.ts similarity index 100% rename from ts/docx/run/break.ts rename to src/docx/run/break.ts diff --git a/ts/docx/run/caps.ts b/src/docx/run/caps.ts similarity index 100% rename from ts/docx/run/caps.ts rename to src/docx/run/caps.ts diff --git a/ts/docx/run/formatting.ts b/src/docx/run/formatting.ts similarity index 100% rename from ts/docx/run/formatting.ts rename to src/docx/run/formatting.ts diff --git a/ts/docx/run/index.ts b/src/docx/run/index.ts similarity index 100% rename from ts/docx/run/index.ts rename to src/docx/run/index.ts diff --git a/ts/docx/run/picture-run.ts b/src/docx/run/picture-run.ts similarity index 100% rename from ts/docx/run/picture-run.ts rename to src/docx/run/picture-run.ts diff --git a/ts/docx/run/properties.ts b/src/docx/run/properties.ts similarity index 100% rename from ts/docx/run/properties.ts rename to src/docx/run/properties.ts diff --git a/ts/docx/run/run-components/drawing/drawing.spec.ts b/src/docx/run/run-components/drawing/drawing.spec.ts similarity index 100% rename from ts/docx/run/run-components/drawing/drawing.spec.ts rename to src/docx/run/run-components/drawing/drawing.spec.ts diff --git a/ts/docx/run/run-components/drawing/index.ts b/src/docx/run/run-components/drawing/index.ts similarity index 100% rename from ts/docx/run/run-components/drawing/index.ts rename to src/docx/run/run-components/drawing/index.ts diff --git a/ts/docx/run/run-components/drawing/inline/graphic/graphic-data/index.ts b/src/docx/run/run-components/drawing/inline/graphic/graphic-data/index.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/graphic/graphic-data/index.ts rename to src/docx/run/run-components/drawing/inline/graphic/graphic-data/index.ts diff --git a/ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip-fill.ts b/src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip-fill.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip-fill.ts rename to src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip-fill.ts diff --git a/ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip.ts b/src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip.ts rename to src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/blip.ts diff --git a/ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.ts b/src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.ts rename to src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.ts diff --git a/ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts b/src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts rename to src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts diff --git a/ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/index.ts b/src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/index.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/index.ts rename to src/docx/run/run-components/drawing/inline/graphic/graphic-data/pic/index.ts diff --git a/ts/docx/run/run-components/drawing/inline/graphic/index.ts b/src/docx/run/run-components/drawing/inline/graphic/index.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/graphic/index.ts rename to src/docx/run/run-components/drawing/inline/graphic/index.ts diff --git a/ts/docx/run/run-components/drawing/inline/index.ts b/src/docx/run/run-components/drawing/inline/index.ts similarity index 100% rename from ts/docx/run/run-components/drawing/inline/index.ts rename to src/docx/run/run-components/drawing/inline/index.ts diff --git a/ts/docx/run/run-components/text.spec.ts b/src/docx/run/run-components/text.spec.ts similarity index 100% rename from ts/docx/run/run-components/text.spec.ts rename to src/docx/run/run-components/text.spec.ts diff --git a/ts/docx/run/run-components/text.ts b/src/docx/run/run-components/text.ts similarity index 100% rename from ts/docx/run/run-components/text.ts rename to src/docx/run/run-components/text.ts diff --git a/ts/docx/run/run-fonts.spec.ts b/src/docx/run/run-fonts.spec.ts similarity index 100% rename from ts/docx/run/run-fonts.spec.ts rename to src/docx/run/run-fonts.spec.ts diff --git a/ts/docx/run/run-fonts.ts b/src/docx/run/run-fonts.ts similarity index 100% rename from ts/docx/run/run-fonts.ts rename to src/docx/run/run-fonts.ts diff --git a/ts/docx/run/run.spec.ts b/src/docx/run/run.spec.ts similarity index 100% rename from ts/docx/run/run.spec.ts rename to src/docx/run/run.spec.ts diff --git a/ts/docx/run/run.ts b/src/docx/run/run.ts similarity index 100% rename from ts/docx/run/run.ts rename to src/docx/run/run.ts diff --git a/ts/docx/run/script.spec.ts b/src/docx/run/script.spec.ts similarity index 100% rename from ts/docx/run/script.spec.ts rename to src/docx/run/script.spec.ts diff --git a/ts/docx/run/script.ts b/src/docx/run/script.ts similarity index 100% rename from ts/docx/run/script.ts rename to src/docx/run/script.ts diff --git a/ts/docx/run/strike.spec.ts b/src/docx/run/strike.spec.ts similarity index 100% rename from ts/docx/run/strike.spec.ts rename to src/docx/run/strike.spec.ts diff --git a/ts/docx/run/style.ts b/src/docx/run/style.ts similarity index 100% rename from ts/docx/run/style.ts rename to src/docx/run/style.ts diff --git a/ts/docx/run/tab.spec.ts b/src/docx/run/tab.spec.ts similarity index 100% rename from ts/docx/run/tab.spec.ts rename to src/docx/run/tab.spec.ts diff --git a/ts/docx/run/tab.ts b/src/docx/run/tab.ts similarity index 100% rename from ts/docx/run/tab.ts rename to src/docx/run/tab.ts diff --git a/ts/docx/run/text-run.spec.ts b/src/docx/run/text-run.spec.ts similarity index 100% rename from ts/docx/run/text-run.spec.ts rename to src/docx/run/text-run.spec.ts diff --git a/ts/docx/run/text-run.ts b/src/docx/run/text-run.ts similarity index 100% rename from ts/docx/run/text-run.ts rename to src/docx/run/text-run.ts diff --git a/ts/docx/run/underline.spec.ts b/src/docx/run/underline.spec.ts similarity index 100% rename from ts/docx/run/underline.spec.ts rename to src/docx/run/underline.spec.ts diff --git a/ts/docx/run/underline.ts b/src/docx/run/underline.ts similarity index 100% rename from ts/docx/run/underline.ts rename to src/docx/run/underline.ts diff --git a/ts/docx/table/grid.spec.ts b/src/docx/table/grid.spec.ts similarity index 100% rename from ts/docx/table/grid.spec.ts rename to src/docx/table/grid.spec.ts diff --git a/ts/docx/table/grid.ts b/src/docx/table/grid.ts similarity index 100% rename from ts/docx/table/grid.ts rename to src/docx/table/grid.ts diff --git a/ts/docx/table/index.ts b/src/docx/table/index.ts similarity index 100% rename from ts/docx/table/index.ts rename to src/docx/table/index.ts diff --git a/ts/docx/table/properties.spec.ts b/src/docx/table/properties.spec.ts similarity index 100% rename from ts/docx/table/properties.spec.ts rename to src/docx/table/properties.spec.ts diff --git a/ts/docx/table/properties.ts b/src/docx/table/properties.ts similarity index 100% rename from ts/docx/table/properties.ts rename to src/docx/table/properties.ts diff --git a/ts/docx/table/table.spec.ts b/src/docx/table/table.spec.ts similarity index 100% rename from ts/docx/table/table.spec.ts rename to src/docx/table/table.spec.ts diff --git a/ts/docx/table/table.ts b/src/docx/table/table.ts similarity index 100% rename from ts/docx/table/table.ts rename to src/docx/table/table.ts diff --git a/ts/docx/xml-components/attribute.spec.ts b/src/docx/xml-components/attribute.spec.ts similarity index 100% rename from ts/docx/xml-components/attribute.spec.ts rename to src/docx/xml-components/attribute.spec.ts diff --git a/ts/docx/xml-components/attributes.ts b/src/docx/xml-components/attributes.ts similarity index 100% rename from ts/docx/xml-components/attributes.ts rename to src/docx/xml-components/attributes.ts diff --git a/ts/docx/xml-components/base.ts b/src/docx/xml-components/base.ts similarity index 100% rename from ts/docx/xml-components/base.ts rename to src/docx/xml-components/base.ts diff --git a/ts/docx/xml-components/default-attributes.ts b/src/docx/xml-components/default-attributes.ts similarity index 100% rename from ts/docx/xml-components/default-attributes.ts rename to src/docx/xml-components/default-attributes.ts diff --git a/ts/docx/xml-components/index.ts b/src/docx/xml-components/index.ts similarity index 100% rename from ts/docx/xml-components/index.ts rename to src/docx/xml-components/index.ts diff --git a/ts/docx/xml-components/xml-component.spec.ts b/src/docx/xml-components/xml-component.spec.ts similarity index 100% rename from ts/docx/xml-components/xml-component.spec.ts rename to src/docx/xml-components/xml-component.spec.ts diff --git a/ts/docx/xml-components/xml-component.ts b/src/docx/xml-components/xml-component.ts similarity index 100% rename from ts/docx/xml-components/xml-component.ts rename to src/docx/xml-components/xml-component.ts diff --git a/ts/docx/xml-components/xmlable-object.ts b/src/docx/xml-components/xmlable-object.ts similarity index 100% rename from ts/docx/xml-components/xmlable-object.ts rename to src/docx/xml-components/xmlable-object.ts diff --git a/ts/export/formatter.spec.ts b/src/export/formatter.spec.ts similarity index 100% rename from ts/export/formatter.spec.ts rename to src/export/formatter.spec.ts diff --git a/ts/export/formatter.ts b/src/export/formatter.ts similarity index 100% rename from ts/export/formatter.ts rename to src/export/formatter.ts diff --git a/ts/export/index.ts b/src/export/index.ts similarity index 100% rename from ts/export/index.ts rename to src/export/index.ts diff --git a/ts/export/packer/compiler.ts b/src/export/packer/compiler.ts similarity index 100% rename from ts/export/packer/compiler.ts rename to src/export/packer/compiler.ts diff --git a/ts/export/packer/express.ts b/src/export/packer/express.ts similarity index 100% rename from ts/export/packer/express.ts rename to src/export/packer/express.ts diff --git a/ts/export/packer/local.spec.ts b/src/export/packer/local.spec.ts similarity index 100% rename from ts/export/packer/local.spec.ts rename to src/export/packer/local.spec.ts diff --git a/ts/export/packer/local.ts b/src/export/packer/local.ts similarity index 100% rename from ts/export/packer/local.ts rename to src/export/packer/local.ts diff --git a/ts/export/packer/packer.ts b/src/export/packer/packer.ts similarity index 100% rename from ts/export/packer/packer.ts rename to src/export/packer/packer.ts diff --git a/ts/export/packer/pdf-convert-wrapper.ts b/src/export/packer/pdf-convert-wrapper.ts similarity index 100% rename from ts/export/packer/pdf-convert-wrapper.ts rename to src/export/packer/pdf-convert-wrapper.ts diff --git a/ts/index.ts b/src/index.ts similarity index 100% rename from ts/index.ts rename to src/index.ts diff --git a/ts/media/data.ts b/src/media/data.ts similarity index 100% rename from ts/media/data.ts rename to src/media/data.ts diff --git a/ts/media/index.ts b/src/media/index.ts similarity index 100% rename from ts/media/index.ts rename to src/media/index.ts diff --git a/ts/numbering/abstract-numbering.ts b/src/numbering/abstract-numbering.ts similarity index 100% rename from ts/numbering/abstract-numbering.ts rename to src/numbering/abstract-numbering.ts diff --git a/ts/numbering/index.ts b/src/numbering/index.ts similarity index 100% rename from ts/numbering/index.ts rename to src/numbering/index.ts diff --git a/ts/numbering/level.ts b/src/numbering/level.ts similarity index 100% rename from ts/numbering/level.ts rename to src/numbering/level.ts diff --git a/ts/numbering/multi-level-type.ts b/src/numbering/multi-level-type.ts similarity index 100% rename from ts/numbering/multi-level-type.ts rename to src/numbering/multi-level-type.ts diff --git a/ts/numbering/num.ts b/src/numbering/num.ts similarity index 100% rename from ts/numbering/num.ts rename to src/numbering/num.ts diff --git a/ts/numbering/numbering.spec.ts b/src/numbering/numbering.spec.ts similarity index 100% rename from ts/numbering/numbering.spec.ts rename to src/numbering/numbering.spec.ts diff --git a/ts/numbering/numbering.ts b/src/numbering/numbering.ts similarity index 100% rename from ts/numbering/numbering.ts rename to src/numbering/numbering.ts diff --git a/ts/properties/components.ts b/src/properties/components.ts similarity index 100% rename from ts/properties/components.ts rename to src/properties/components.ts diff --git a/ts/properties/index.ts b/src/properties/index.ts similarity index 100% rename from ts/properties/index.ts rename to src/properties/index.ts diff --git a/ts/properties/properties.spec.ts b/src/properties/properties.spec.ts similarity index 100% rename from ts/properties/properties.spec.ts rename to src/properties/properties.spec.ts diff --git a/ts/relationships/attributes.ts b/src/relationships/attributes.ts similarity index 100% rename from ts/relationships/attributes.ts rename to src/relationships/attributes.ts diff --git a/ts/relationships/index.ts b/src/relationships/index.ts similarity index 100% rename from ts/relationships/index.ts rename to src/relationships/index.ts diff --git a/ts/relationships/relationship.ts b/src/relationships/relationship.ts similarity index 100% rename from ts/relationships/relationship.ts rename to src/relationships/relationship.ts diff --git a/ts/styles/defaults/index.ts b/src/styles/defaults/index.ts similarity index 100% rename from ts/styles/defaults/index.ts rename to src/styles/defaults/index.ts diff --git a/ts/styles/defaults/paragraph-properties.ts b/src/styles/defaults/paragraph-properties.ts similarity index 100% rename from ts/styles/defaults/paragraph-properties.ts rename to src/styles/defaults/paragraph-properties.ts diff --git a/ts/styles/defaults/run-properties.ts b/src/styles/defaults/run-properties.ts similarity index 100% rename from ts/styles/defaults/run-properties.ts rename to src/styles/defaults/run-properties.ts diff --git a/ts/styles/factory.ts b/src/styles/factory.ts similarity index 100% rename from ts/styles/factory.ts rename to src/styles/factory.ts diff --git a/ts/styles/index.ts b/src/styles/index.ts similarity index 100% rename from ts/styles/index.ts rename to src/styles/index.ts diff --git a/ts/styles/latent-styles/exceptions.ts b/src/styles/latent-styles/exceptions.ts similarity index 100% rename from ts/styles/latent-styles/exceptions.ts rename to src/styles/latent-styles/exceptions.ts diff --git a/ts/styles/latent-styles/index.ts b/src/styles/latent-styles/index.ts similarity index 100% rename from ts/styles/latent-styles/index.ts rename to src/styles/latent-styles/index.ts diff --git a/ts/styles/sample/index.ts b/src/styles/sample/index.ts similarity index 100% rename from ts/styles/sample/index.ts rename to src/styles/sample/index.ts diff --git a/ts/styles/style/components.ts b/src/styles/style/components.ts similarity index 100% rename from ts/styles/style/components.ts rename to src/styles/style/components.ts diff --git a/ts/styles/style/index.ts b/src/styles/style/index.ts similarity index 100% rename from ts/styles/style/index.ts rename to src/styles/style/index.ts diff --git a/ts/styles/styles.spec.ts b/src/styles/styles.spec.ts similarity index 100% rename from ts/styles/styles.spec.ts rename to src/styles/styles.spec.ts diff --git a/ts/test-tsconfig.json b/src/test-tsconfig.json similarity index 100% rename from ts/test-tsconfig.json rename to src/test-tsconfig.json diff --git a/ts/tests/utility.ts b/src/tests/utility.ts similarity index 100% rename from ts/tests/utility.ts rename to src/tests/utility.ts diff --git a/ts/tsconfig.json b/src/tsconfig.json similarity index 100% rename from ts/tsconfig.json rename to src/tsconfig.json diff --git a/ts/tslint.json b/src/tslint.json similarity index 100% rename from ts/tslint.json rename to src/tslint.json