@sveltekit-i18n/base 1.0.0-beta.6 → 1.0.0-rc.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -116,6 +116,6 @@ export const { t, locale, locales, loading, loadTranslations } = new i18n(config
116
116
  ```
117
117
 
118
118
  ## More info
119
- [Docs](https://github.com/sveltekit-i18n/lib/tree/master/docs/README.md)\
120
- [Examples](https://github.com/sveltekit-i18n/lib/tree/master/examples)\
121
- [Changelog](https://github.com/sveltekit-i18n/lib/releases)
119
+ [Docs](https://github.com/sveltekit-i18n/base/tree/master/docs/README.md)\
120
+ [Examples](https://github.com/sveltekit-i18n/lib/tree/master/examples#parsers)\
121
+ [Changelog](https://github.com/sveltekit-i18n/base/releases)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltekit-i18n/base",
3
- "version": "1.0.0-beta.6",
3
+ "version": "1.0.0-rc.0",
4
4
  "description": "Base functionality of sveltekit-i18n library with a support for external message parsers.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -15,10 +15,10 @@
15
15
  "./package.json": "./package.json"
16
16
  },
17
17
  "scripts": {
18
- "dev": "tsup src/index.ts --dts --format cjs,esm --sourcemap --watch",
18
+ "dev": "tsup --watch",
19
19
  "test": "jest",
20
- "build": "tsup src/index.ts --dts --format cjs,esm --minify",
21
- "prepublishOnly": "rm -rf dist && npm run build",
20
+ "build": "tsup",
21
+ "prepublishOnly": "npm run build",
22
22
  "lint": "eslint --fix --ext .ts,.js --ignore-path .gitignore ."
23
23
  },
24
24
  "files": [