Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
(*): 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Cretezy committed Jul 30, 2018
1 parent eab97ad commit a26abdf
Show file tree
Hide file tree
Showing 7 changed files with 811 additions and 38 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "0.7.2",
"version": "0.7.3",
"npmClient": "yarn",
"useWorkspaces": true
}
8 changes: 4 additions & 4 deletions packages/create/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/Cretezy/Noderize.git"
},
"version": "0.7.2",
"version": "0.7.3",
"license": "MIT",
"bin": "dist/index.js",
"files": [
Expand All @@ -26,13 +26,13 @@
"prepare": "npm run clean && npm run build -- --env production"
},
"dependencies": {
"@noderize/runtime": "^0.7.2",
"@noderize/runtime": "^0.7.3",
"consola": "^1.3.0",
"fs-extra": "^6.0.1",
"fs-extra": "^7.0.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"@noderize/scripts": "^0.7.2",
"@noderize/scripts": "^0.7.3",
"source-map-support": "^0.5.5"
}
}
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/Cretezy/Noderize.git"
},
"version": "0.7.2",
"version": "0.7.3",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.46"
Expand Down
19 changes: 13 additions & 6 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/Cretezy/Noderize.git"
},
"version": "0.7.2",
"version": "0.7.3",
"license": "MIT",
"bin": {
"noderize-scripts": "dist/index.js"
Expand All @@ -28,23 +28,30 @@
},
"dependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.55",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.55",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0-beta.55",
"@babel/plugin-proposal-function-sent": "^7.0.0-beta.55",
"@babel/plugin-proposal-json-strings": "^7.0.0-beta.55",
"@babel/plugin-proposal-numeric-separator": "^7.0.0-beta.55",
"@babel/plugin-proposal-throw-expressions": "^7.0.0-beta.55",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.55",
"@babel/plugin-syntax-import-meta": "^7.0.0-beta.55",
"@babel/plugin-transform-runtime": "^7.0.0-beta.46",
"@babel/polyfill": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-flow": "^7.0.0-beta.46",
"@babel/preset-stage-2": "^7.0.0-beta.46",
"@noderize/runtime": "^0.7.2",
"@noderize/runtime": "^0.7.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"babel-loader": "^8.0.0-beta.0",
"chokidar": "^2.0.3",
"consola": "^1.3.0",
"cosmiconfig": "^5.0.5",
"cross-spawn": "^6.0.5",
"eslint": "^4.19.1",
"eslint": "^5.2.0",
"fork-ts-checker-webpack-plugin": "^0.4.1",
"fs-extra": "^6.0.1",
"fs-extra": "^7.0.0",
"happypack": "^5.0.0",
"jest": "^23.1.0",
"lodash.merge": "^4.6.1",
Expand Down
15 changes: 11 additions & 4 deletions packages/scripts/src/createBabelConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,19 @@ export default ({
targets
}
],
["@babel/preset-stage-2", { decoratorsLegacy: true }],
"@babel/preset-flow",

"@babel/preset-flow",
...presets
],
plugins: [
["@babel/plugin-proposal-decorators", { legacy: true }],
plugins: [ ["@babel/plugin-proposal-decorators", { "legacy": true }],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
["@babel/plugin-proposal-class-properties", { "loose": false }],
"@babel/plugin-proposal-json-strings",
(runtime === "noderize" || runtime === "include") &&
"@babel/plugin-transform-runtime",
...plugins
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/src/scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default async (args, fullArgs) => {
let jestConfig = {};
try {
// Load jest config
const results = await cosmiconfig("jest").load();
const results = await cosmiconfig("jest").search();

if (results) {
jestConfig = results.config;
Expand Down
Loading

0 comments on commit a26abdf

Please sign in to comment.