@unchainedshop/roles 1.1.0-1 → 1.1.4

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/.versions CHANGED
@@ -7,7 +7,7 @@ ecmascript-runtime-client@0.12.1
7
7
  ecmascript-runtime-server@0.11.0
8
8
  fetch@0.1.1
9
9
  inter-process-messaging@0.1.1
10
- local-test:unchained:roles@1.1.0
10
+ local-test:unchained:roles@1.1.1
11
11
  meteor@1.10.0
12
12
  modern-browsers@0.1.8
13
13
  modules@0.18.0
@@ -15,4 +15,4 @@ modules-runtime@0.13.0
15
15
  promise@0.12.0
16
16
  react-fast-refresh@0.2.3
17
17
  typescript@4.5.4
18
- unchained:roles@1.1.0
18
+ unchained:roles@1.1.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unchainedshop/roles",
3
- "version": "1.1.0-1",
3
+ "version": "1.1.4",
4
4
  "description": "Roles package for unchained engine",
5
5
  "main": "lib/roles-index.js",
6
6
  "types": "lib/roles-index.d.ts",
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^16.11.41",
34
- "@unchainedshop/types": "../@unchainedshop/types",
34
+ "@unchainedshop/types": "^1.1.2",
35
35
  "chai": "^4.3.6",
36
- "typescript": "^4.7.3"
36
+ "typescript": "^4.7.4"
37
37
  }
38
38
  }
@@ -1,7 +0,0 @@
1
- This directory and the files immediately inside it are automatically generated
2
- when you change this package's NPM dependencies. Commit the files in this
3
- directory (npm-shrinkwrap.json, .gitignore, and this README) to source control
4
- so that others run the same versions of sub-dependencies.
5
-
6
- You should NOT check in the node_modules directory that Meteor automatically
7
- creates; if you are using git, the .gitignore file tells git to ignore it.
@@ -1,10 +0,0 @@
1
- {
2
- "lockfileVersion": 1,
3
- "dependencies": {
4
- "lodash.clone": {
5
- "version": "4.5.0",
6
- "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz",
7
- "integrity": "sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg=="
8
- }
9
- }
10
- }
package/package.js DELETED
@@ -1,25 +0,0 @@
1
- Package.describe({
2
- name: 'unchained:roles',
3
- version: '1.1.0',
4
- summary: 'Unchained Engine: Roles',
5
- git: 'https://github.com/unchainedshop/unchained',
6
- documentation: 'README.md',
7
- });
8
-
9
- Npm.depends({
10
- 'lodash.clone': '4.5.0',
11
- });
12
-
13
- Package.onUse((api) => {
14
- api.versionsFrom('2.7.3');
15
-
16
- api.use('ecmascript');
17
- api.use('typescript');
18
-
19
- api.mainModule('src/roles-index.ts');
20
- });
21
-
22
- Package.onTest((api) => {
23
- api.use('ecmascript');
24
- api.use('unchained:roles');
25
- });