Skip to content

Commit

Permalink
Clean up package
Browse files Browse the repository at this point in the history
  • Loading branch information
Igorbek committed Jun 14, 2017
1 parent cdba7b1 commit 7c1ea0a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 21 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
built/
dist/
node_modules/
.vscode/
**/*.js
.vscode/
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "typescript-plugin-styled-components",
"version": "0.0.1",
"description": "TypeScript transformer for improving the debugging experience to styled-components",
"main": "index.js",
"description": "TypeScript transformer for improving the debugging experience of styled-components",
"main": "dist/index.js",
"repository": "https://github.com/Igorbek/typescript-plugin-styled-components.git",
"author": "Igor Oleinikov <[email protected]>",
"license": "MIT",
"scripts": {
"build-run": "tsc && node ./src/runner.js",
"run-script": "./src/runner.js",
"test-baselines": "jest --config ./jest.config.json",
"test:watch": "yarn test-baselines -- --watch",
"test": "yarn test-baselines"
"build": "tsc",
"test:baselines": "jest --config ./jest.config.json",
"test:watch": "yarn test:baselines -- --watch",
"test": "yarn test:baselines"
},
"typings": "dist/index.d.ts",
"dependencies": {
"jest": "20",
"typescript": "2.3"
"typescript": "~2.3.4 || 2.4"
},
"devDependencies": {
"@types/jest": "^19.2.4",
"@types/node": "^7.0.31",
"styled-components": "^2.0.1",
"ts-jest": "20"
}
}
}
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
// "outDir": "./", /* Redirect output structure to the directory. */
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"outDir": "./dist", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "removeComments": true, /* Do not emit comments to output. */
// "noEmit": true, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */

/* Strict Type-Checking Options */
"strict": true
"strict": true,
/* Enable all strict type-checking options. */
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* Enable strict null checks. */
Expand All @@ -35,7 +35,7 @@
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */

/* Module Resolution Options */
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2201,9 +2201,9 @@ type-check@~0.3.2:
dependencies:
prelude-ls "~1.1.2"

[email protected]:
version "2.3.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.3.4.tgz#3d38321828231e434f287514959c37a82b629f42"
"typescript@~2.3.4 || 2.4":
version "2.4.0"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.4.0.tgz#aef5a8d404beba36ad339abf079ddddfffba86dd"

ua-parser-js@^0.7.9:
version "0.7.12"
Expand Down

0 comments on commit 7c1ea0a

Please sign in to comment.