Skip to content

Commit

Permalink
1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JayCanuck committed Mar 26, 2018
2 parents bb977bf + 224ff94 commit d7a6fb2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 1.0.1 (March 26, 2018)

## pack

* Updated `@enact/dev-utils` fixing React 16 issues with v8 snapshot support.

## template

* Fixed automatic name detection for NPM packages when using version/tag specifiers.

## lint

* Added `--framework` temporary alias for `--strict` to fix build systems while they update to current syntax.

## 1.0.0 (March 15, 2018)

Dependency updates for most components.
Expand Down
2 changes: 1 addition & 1 deletion commands/lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function api({strict = false, local = false, fix = false, eslintArgs = []} = {})
function cli(args) {
const opts = minimist(args, {
boolean: ['local', 'strict', 'fix', 'help'],
alias: {l: 'local', s: 'strict', f: 'fix', h: 'help'}
alias: {l: 'local', s: 'strict', framework: 'strict', f: 'fix', h: 'help'}
});
opts.help && displayHelp();

Expand Down
2 changes: 1 addition & 1 deletion commands/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function installFromLocal(target, name = path.basename(target)) {
}

// Download and extract NPM package
function installFromNPM(target, name = path.basename(target).replace(/^template-/, '')) {
function installFromNPM(target, name = path.basename(target).replace(/(?:^template-|@.*$)/g, '')) {
const tempDir = path.join(os.tmpdir(), 'enact');
fs.removeSync(tempDir);
fs.ensureDirSync(tempDir);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/cli",
"version": "1.0.0",
"version": "1.0.1",
"description": "Full-featured build environment tool for Enact applications.",
"main": "index.js",
"author": "Jason Robitaille <[email protected]>",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@babel/preset-env": "7.0.0-beta.41",
"@babel/preset-react": "7.0.0-beta.41",
"@babel/preset-stage-0": "7.0.0-beta.41",
"@enact/dev-utils": "1.0.0",
"@enact/dev-utils": "1.0.1",
"autoprefixer": "8.1.0",
"babel-eslint": "8.2.2",
"babel-loader": "8.0.0-beta.2",
Expand Down

0 comments on commit d7a6fb2

Please sign in to comment.