@atom-js-org/cli 0.5.1-alpha.0 → 0.5.3-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atom-js-org/cli",
3
- "version": "0.5.1-alpha.0",
3
+ "version": "0.5.3-alpha.0",
4
4
  "description": "CLI for running and building AtomJS desktop applications.",
5
5
  "bin": {
6
6
  "atom": "bin/atom.cjs"
package/src/build.cjs CHANGED
@@ -108,7 +108,7 @@ async function localBuild(project, target, options = {}) {
108
108
  }
109
109
 
110
110
  const manifest = {
111
- atomjsVersion: '0.5.1-alpha.0',
111
+ atomjsVersion: '0.5.2-alpha.0',
112
112
  target,
113
113
  productName,
114
114
  appId: project.config.appId,
package/src/init.cjs CHANGED
@@ -30,14 +30,14 @@ async function initCommand(directory, options = {}) {
30
30
  start: 'atom run build'
31
31
  },
32
32
  dependencies: {
33
- '@atom-js-org/runtime': '0.5.1-alpha.0',
34
- electron: 'npm:@atom-js-org/electron@0.5.1-alpha.0'
33
+ '@atom-js-org/runtime': '0.5.2-alpha.0',
34
+ electron: 'npm:@atom-js-org/electron@0.5.2-alpha.0'
35
35
  },
36
36
  optionalDependencies: {
37
37
  'webview-nodejs': '0.5.0'
38
38
  },
39
39
  devDependencies: {
40
- '@atom-js-org/cli': '0.5.1-alpha.0'
40
+ '@atom-js-org/cli': '0.5.2-alpha.0'
41
41
  },
42
42
  overrides: {
43
43
  tar: '7.5.20'