@mono-labs/cli 0.0.7 → 0.0.9

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.
@@ -14,7 +14,7 @@ export function getRootJson() {
14
14
  }
15
15
 
16
16
  export function getHasteFiles() {
17
- const dir = path.join(process.cwd(), '.haste')
17
+ const dir = path.join(process.cwd(), '.mono')
18
18
 
19
19
  if (!fs.existsSync(dir)) {
20
20
  return []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -10,7 +10,8 @@
10
10
  "scripts": {
11
11
  "start": "node bin/mono.js",
12
12
  "dev": "node bin/mono.js",
13
- "test": "echo \"Error: no test specified\" && exit 1"
13
+ "test": "echo \"Error: no test specified\" && exit 1",
14
+ "publish": "npm publish --access public"
14
15
  },
15
16
  "keywords": [
16
17
  "cli",
@@ -39,5 +40,6 @@
39
40
  "bin/",
40
41
  "lib/",
41
42
  "README.md"
42
- ]
43
+ ],
44
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
43
45
  }